From cdbfc6a8fbcd27e1a9b5ae3ad60b6836738fbb7c Mon Sep 17 00:00:00 2001 From: foobar Date: Fri, 12 Dec 2003 05:20:24 +0000 Subject: [PATCH] MFH: Fixed bug #26461 (-lssl missing from LIBS) --- NEWS | 1 + acinclude.m4 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index e0c05d33e8..0bcbc88a80 100644 --- a/NEWS +++ b/NEWS @@ -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) diff --git a/acinclude.m4 b/acinclude.m4 index d80928a348..284c257e0f 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -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 -- 2.50.1