1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-24 09:08:49 -05:00

openssl: assume engine support in 0.9.8 or later

Fixes #2983
Closes #2988
This commit is contained in:
Rainer Jung 2018-09-13 09:55:47 +02:00 committed by Daniel Stenberg
parent daa12c6eb3
commit 1599dfcba6
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -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>