diff options
author | Daniel Stenberg <daniel@haxx.se> | 2015-08-21 23:58:24 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2015-08-22 00:03:56 +0200 |
commit | 30aa38c818e51ad4ad135e2550f3e3356dd19818 (patch) | |
tree | 093919eb7baa394fbdd29c0442ef7fe70750195d /configure.ac | |
parent | 8363656cb4e0c60a11d8531ead0ec43120b50591 (diff) |
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
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 683299d10..e9ac17f1b 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" |