From 1c8232e2b459be4932247ba487ea46e8d86ff2c4 Mon Sep 17 00:00:00 2001 From: FX Coudert Date: Wed, 11 Sep 2019 05:12:04 +0000 Subject: [PATCH] Fix detection of OpenSSL built w/o deprecated features support (#470) SSL_library_init() is deprecated since OpenSSL v1.1 and is absent in OpenSSL built without deprecated features. Several distributions (e.g. Homebrew) ship OpenSSL built without deprecated features. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 7b3aae34598..7ad21e9e03e 100644 --- a/configure.ac +++ b/configure.ac @@ -1357,7 +1357,7 @@ if test "x$with_openssl" = "xyes"; then AC_CHECK_LIB(crypto,[CRYPTO_new_ex_data],[LIBOPENSSL_LIBS="-lcrypto $LIBOPENSSL_LIBS"],[ AC_MSG_ERROR([library 'crypto' is required for OpenSSL]) ],$LIBOPENSSL_LIBS) - AC_CHECK_LIB(ssl,[SSL_library_init],[LIBOPENSSL_LIBS="-lssl $LIBOPENSSL_LIBS"],[ + AC_CHECK_LIB(ssl,[SSL_CTX_new],[LIBOPENSSL_LIBS="-lssl $LIBOPENSSL_LIBS"],[ AC_MSG_ERROR([library 'ssl' is required for OpenSSL]) ],$LIBOPENSSL_LIBS) ])