diff options
author | Remi Collet <remi@php.net> | 2017-08-18 14:51:44 +0200 |
---|---|---|
committer | Remi Collet <remi@php.net> | 2017-08-18 14:51:44 +0200 |
commit | a7594cb74f0df0737b460153775e93010e923934 (patch) | |
tree | 6f82e5749f75b96dd3b664cd0ea4a2b8179a4ef5 /ext/curl | |
parent | 065551bc9c94eb5842f0ccaf654d8e187f6485fd (diff) | |
download | php-git-a7594cb74f0df0737b460153775e93010e923934.tar.gz |
Fixed bug #75093 OpenSSL support not detected
Diffstat (limited to 'ext/curl')
-rw-r--r-- | ext/curl/config.m4 | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/ext/curl/config.m4 b/ext/curl/config.m4 index 63682e0f06..d99c4335ae 100644 --- a/ext/curl/config.m4 +++ b/ext/curl/config.m4 @@ -73,6 +73,8 @@ if test "$PHP_CURL" != "no"; then save_CFLAGS="$CFLAGS" CFLAGS="`$CURL_CONFIG --cflags`" + save_LDFLAGS="$LDFLAGS" + LDFLAGS="`$CURL_CONFIG --libs`" AC_PROG_CPP AC_MSG_CHECKING([for openssl support in libcurl]) @@ -130,6 +132,7 @@ int main(int argc, char *argv[]) ]) CFLAGS="$save_CFLAGS" + LDFLAGS="$save_LDFLAGS" else AC_MSG_RESULT([no]) fi |