From bf426eecd715151cd6e9d528c8f3259a221a5a7f Mon Sep 17 00:00:00 2001 From: William Lallemand Date: Mon, 9 Oct 2023 15:09:47 +0200 Subject: [PATCH] BUILD: ssl: add 'ssl_c_r_dn' fetch for WolfSSL WolfSSL supports SSL_get0_verified_chain() so we can activate this feature. --- include/haproxy/openssl-compat.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/haproxy/openssl-compat.h b/include/haproxy/openssl-compat.h index e2a48bb..50344e6 100644 --- a/include/haproxy/openssl-compat.h +++ b/include/haproxy/openssl-compat.h @@ -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 -- 1.7.10.4