mirror of
https://github.com/php/php-src.git
synced 2026-04-24 08:28:26 +02:00
MFH: Fixed bug #26461 (-lssl missing from LIBS)
This commit is contained in:
@@ -18,6 +18,7 @@ PHP 4 NEWS
|
||||
passed by reference). (Wez)
|
||||
- Fixed bug #26463 (Incorrect handling of semicolons after heredoc). (Ilia)
|
||||
- Fixed bug #26462 (phpize + ext/bcmath -> compile error). (Jani)
|
||||
- Fixed bug #26461 (-lssl missing from LIBS). (Jani)
|
||||
- Fixed bug #26458 (var_dump(), var_export(), debug_zval_dump() not binary
|
||||
safe for array keys). (Ilia)
|
||||
- Fixed bug #26447 (--with-openssl=shared causes compile errors). (Jani)
|
||||
|
||||
+1
-1
@@ -1669,7 +1669,6 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[
|
||||
old_LIBS=$LIBS
|
||||
LIBS="$LIBS -lcrypto"
|
||||
PHP_CHECK_LIBRARY(ssl, SSL_CTX_set_ssl_version, [
|
||||
PHP_ADD_LIBRARY(ssl,,$1)
|
||||
found_openssl=yes
|
||||
],[
|
||||
AC_MSG_ERROR([libssl not found!])
|
||||
@@ -1677,6 +1676,7 @@ AC_DEFUN([PHP_SETUP_OPENSSL],[
|
||||
-L$OPENSSL_LIBDIR
|
||||
])
|
||||
LIBS=$old_LIBS
|
||||
PHP_ADD_LIBRARY(ssl,,$1)
|
||||
fi
|
||||
|
||||
dnl For apache 1.3.x static build
|
||||
|
||||
Reference in New Issue
Block a user