mirror of
https://github.com/haproxy/haproxy.git
synced 2026-04-15 21:59:41 -04:00
BUILD: ssl: get0_verified chain is available on libreSSL
Define HAVE_SSL_get0_verified_chain when it's using libreSSL >= 3.3.6.
This commit is contained in:
parent
6133aba889
commit
d0c363486c
1 changed files with 4 additions and 0 deletions
|
|
@ -90,6 +90,10 @@
|
|||
|
||||
#if (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
||||
#define HAVE_SSL_KEYLOG
|
||||
#endif
|
||||
|
||||
/* minimum OpenSSL 1.1.1 & libreSSL 3.3.6 */
|
||||
#if (defined(LIBRESSL_VERSION_NUMBER) && (LIBRESSL_VERSION_NUMBER >= 0x3030600L)) || (HA_OPENSSL_VERSION_NUMBER >= 0x10101000L)
|
||||
#define HAVE_SSL_get0_verified_chain
|
||||
#endif
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue