pajoye          Tue Dec 26 09:52:05 2006 UTC

  Modified files:              (Branch: PHP_5_2)
    /php-src    NEWS 
    /php-src/ext/zip    config.m4 
  Log:
  - #39952 zip ignoring --with-libdir on zlib checks (judas dot
    iscariote at gmail dot com)
  
  
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.461&r2=1.2027.2.547.2.462&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.461 php-src/NEWS:1.2027.2.547.2.462
--- php-src/NEWS:1.2027.2.547.2.461     Mon Dec 25 19:23:02 2006
+++ php-src/NEWS        Tue Dec 26 09:52:04 2006
@@ -17,6 +17,8 @@
   __inet_pton() and inet_ntop() was named __inet_ntop(). (Hannes)
 - Fixed the validate email filter so that the letter "v" can also be used in
   the user part of the email address. (Derick)
+- Fixed bug #39952 (zip ignoring --with-libdir on zlib checks) (judas dot
+  iscariote at gmail dot com)
 - Fixed bug #39944 (References broken). (Dmitry)
 - Fixed bug #39935 (Extensions tidy,mcrypt,mhash,pdo_sqlite ignores
   --with-libdir). (judas dot iscariote at gmail dot com, Derick)
http://cvs.php.net/viewvc.cgi/php-src/ext/zip/config.m4?r1=1.8.2.1&r2=1.8.2.2&diff_format=u
Index: php-src/ext/zip/config.m4
diff -u php-src/ext/zip/config.m4:1.8.2.1 php-src/ext/zip/config.m4:1.8.2.2
--- php-src/ext/zip/config.m4:1.8.2.1   Fri Nov  3 16:46:18 2006
+++ php-src/ext/zip/config.m4   Tue Dec 26 09:52:05 2006
@@ -1,5 +1,5 @@
 dnl
-dnl $Id: config.m4,v 1.8.2.1 2006/11/03 16:46:18 pajoye Exp $
+dnl $Id: config.m4,v 1.8.2.2 2006/12/26 09:52:05 pajoye Exp $
 dnl
 
 PHP_ARG_ENABLE(zip, for zip archive read/writesupport,
@@ -40,7 +40,7 @@
                AC_MSG_ERROR([zip support requires ZLIB. Use 
--with-zlib-dir=<DIR> to specify prefix where ZLIB include and library are 
located])
        else
                AC_MSG_RESULT([$PHP_ZLIB_DIR])
-               PHP_ADD_LIBRARY_WITH_PATH(z, $PHP_ZLIB_DIR/lib, 
ZIP_SHARED_LIBADD)
+               PHP_ADD_LIBRARY_WITH_PATH(z, $PHP_ZLIB_DIR/$PHP_LIBDIR, 
ZIP_SHARED_LIBADD)
                PHP_ADD_INCLUDE($PHP_ZLIB_INCDIR)
        fi
 

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

Reply via email to