BUILD: ssl: add 'ssl_c_r_dn' fetch for WolfSSL

WolfSSL supports SSL_get0_verified_chain() so we can activate this
feature.
This commit is contained in:
William Lallemand 2023-10-09 15:09:47 +02:00
parent d75bc06bdc
commit bf426eecd7

View File

@ -104,7 +104,7 @@
#endif
/* minimum OpenSSL 1.1.1 & libreSSL 3.3.6 */
#if (defined(LIBRESSL_VERSION_NUMBER) && (LIBRESSL_VERSION_NUMBER >= 0x3030600L)) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
#if (defined(LIBRESSL_VERSION_NUMBER) && (LIBRESSL_VERSION_NUMBER >= 0x3030600L)) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L) || defined(USE_OPENSSL_WOLFSSL)
#define HAVE_SSL_get0_verified_chain
#endif