diff options
author | Renaud Allard <renaud@allard.it> | 2016-03-07 19:04:34 +0000 |
---|---|---|
committer | Jeremy Harris <jgh146exb@wizmail.org> | 2016-03-07 19:04:34 +0000 |
commit | 79f0842195b857575d524764fd9aebb343bd75ec (patch) | |
tree | 46b2e784803519bb6149af2b1099359cd9dc055e | |
parent | fd4f9c92ea39447557f1847c6bdb4e178e972fec (diff) |
TLS: Fix ECDH use under LibreSSL. Bug 1806
-rw-r--r-- | src/src/tls-openssl.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/src/tls-openssl.c b/src/src/tls-openssl.c index f45daa767..9e008e149 100644 --- a/src/src/tls-openssl.c +++ b/src/src/tls-openssl.c @@ -62,7 +62,10 @@ functions from the OpenSSL library. */ && (OPENSSL_VERSION_NUMBER & 0x0000ff000L) >= 0x000002000L # define EXIM_HAVE_OPENSSL_CHECKHOST # endif +#endif +#if !defined(LIBRESSL_VERSION_NUMBER) \ + || LIBRESSL_VERSION_NUMBER >= 0x20010000L # if !defined(OPENSSL_NO_ECDH) # if OPENSSL_VERSION_NUMBER >= 0x0090800fL # define EXIM_HAVE_ECDH |