diff options
author | Rainer Jung <rainer.jung@kippdata.de> | 2018-09-13 09:55:47 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2018-09-14 11:56:28 +0200 |
commit | 1599dfcba6594adb876cbe653c6b450cbbde0d2c (patch) | |
tree | 36e1f28040da325f7fffe4cf65ee41efcb571e14 | |
parent | daa12c6eb36b26031a80e2bfe61453b4c25f53f7 (diff) |
openssl: assume engine support in 0.9.8 or later
Fixes #2983
Closes #2988
-rw-r--r-- | lib/vtls/openssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index a9ba33038..841239396 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -69,7 +69,7 @@ #include <openssl/ocsp.h> #endif -#if (OPENSSL_VERSION_NUMBER >= 0x10000000L) && /* 1.0.0 or later */ \ +#if (OPENSSL_VERSION_NUMBER >= 0x0090800fL) && /* 0.9.8 or later */ \ !defined(OPENSSL_NO_ENGINE) #define USE_OPENSSL_ENGINE #include <openssl/engine.h> |