sniper          Fri Dec 12 00:20:26 2003 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src    acinclude.m4 NEWS 
  Log:
  MFH: Fixed bug #26461 (-lssl missing from LIBS)
  
Index: php-src/acinclude.m4
diff -u php-src/acinclude.m4:1.218.2.33 php-src/acinclude.m4:1.218.2.34
--- php-src/acinclude.m4:1.218.2.33     Thu Dec  4 10:59:04 2003
+++ php-src/acinclude.m4        Fri Dec 12 00:20:24 2003
@@ -1,4 +1,4 @@
-dnl $Id: acinclude.m4,v 1.218.2.33 2003/12/04 15:59:04 sniper Exp $
+dnl $Id: acinclude.m4,v 1.218.2.34 2003/12/12 05:20:24 sniper Exp $
 dnl
 dnl This file contains local autoconf functions.
 
@@ -1669,7 +1669,6 @@
     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 @@
       -L$OPENSSL_LIBDIR
     ])
     LIBS=$old_LIBS
+    PHP_ADD_LIBRARY(ssl,,$1)
   fi
 
   dnl For apache 1.3.x static build
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.498 php-src/NEWS:1.1247.2.499
--- php-src/NEWS:1.1247.2.498   Thu Dec 11 18:14:55 2003
+++ php-src/NEWS        Fri Dec 12 00:20:24 2003
@@ -18,6 +18,7 @@
   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)

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to