From: Daniel Stenberg Date: Fri, 21 Aug 2015 21:58:24 +0000 (+0200) Subject: configure: change functions to detect openssl (clones) X-Git-Tag: curl-7_45_0~115 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=30aa38c818e51ad4ad135e2550f3e3356dd19818;p=thirdparty%2Fcurl.git configure: change functions to detect openssl (clones) ... since boringssl moved the former ones and the check started to fail. URL: https://android.googlesource.com/platform/external/curl/+/f551028d5caab29d4b4a4ae8c159c76c3cfd4887%5E!/ Original-patch-by: Bertrand Simonnet --- diff --git a/configure.ac b/configure.ac index 683299d107..e9ac17f1b2 100644 --- a/configure.ac +++ b/configure.ac @@ -1493,13 +1493,13 @@ if test "$curl_ssl_msg" = "$init_ssl_msg" && test X"$OPT_SSL" != Xno; then ;; esac - AC_CHECK_LIB(crypto, CRYPTO_lock,[ + AC_CHECK_LIB(crypto, HMAC_Init,[ HAVECRYPTO="yes" LIBS="-lcrypto $LIBS" ],[ LDFLAGS="$CLEANLDFLAGS -L$LIB_OPENSSL" CPPFLAGS="$CLEANCPPFLAGS -I$PREFIX_OPENSSL/include/openssl -I$PREFIX_OPENSSL/include" - AC_CHECK_LIB(crypto, CRYPTO_add_lock,[ + AC_CHECK_LIB(crypto, HMAC_Init_Ex,[ HAVECRYPTO="yes" LIBS="-lcrypto $LIBS"], [ LDFLAGS="$CLEANLDFLAGS"