From: Rainer Jung Date: Thu, 13 Sep 2018 07:55:47 +0000 (+0200) Subject: openssl: assume engine support in 0.9.8 or later X-Git-Tag: curl-7_62_0~180 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=1599dfcba6594adb876cbe653c6b450cbbde0d2c;p=curl openssl: assume engine support in 0.9.8 or later Fixes #2983 Closes #2988 --- 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 #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