From: Daniel Stenberg Date: Thu, 10 Dec 2015 16:30:31 +0000 (+0100) Subject: openssl: adapt to 1.1.0+ name changes X-Git-Tag: curl-7_47_0~94 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fa9332d3cafe9c36f7096d46633dd9c7b332ffff;p=curl openssl: adapt to 1.1.0+ name changes --- diff --git a/lib/vtls/openssl.c b/lib/vtls/openssl.c index 551c2a88d..f1b831126 100644 --- a/lib/vtls/openssl.c +++ b/lib/vtls/openssl.c @@ -119,6 +119,12 @@ #define OPENSSL_NO_SSL2 #endif +#if OPENSSL_VERSION_NUMBER >= 0x10100000L /* 1.1.0+ removed "SSLeay" */ +#define SSLeay_add_ssl_algorithms() SSL_library_init() +#define SSLeay() OpenSSL_version_num() +#define SSLEAY_VERSION_NUMBER OPENSSL_VERSION_NUMBER +#endif + #if defined(OPENSSL_IS_BORINGSSL) #define NO_RAND_SEED 1 /* In BoringSSL OpenSSL_add_all_algorithms does nothing */