BUILD: ssl: enable 'ciphersuites' for WolfSSL

WolfSSL supports setting the 'ciphersuites', lets enable the keyword for
it.
This commit is contained in:
William Lallemand 2023-10-09 14:56:43 +02:00
parent a62a2d8b48
commit d75bc06bdc

View File

@ -73,7 +73,7 @@
#define HAVE_SSL_RAND_KEEP_RANDOM_DEVICES_OPEN
#endif
#if ((OPENSSL_VERSION_NUMBER >= 0x10101000L) && !defined(LIBRESSL_VERSION_NUMBER) && !defined(OPENSSL_IS_BORINGSSL))
#if ((OPENSSL_VERSION_NUMBER >= 0x10101000L) && !defined(LIBRESSL_VERSION_NUMBER) && !defined(OPENSSL_IS_BORINGSSL)) || defined(USE_OPENSSL_WOLFSSL)
#define HAVE_SSL_CTX_SET_CIPHERSUITES
#define HAVE_ASN1_TIME_TO_TM
#endif