derick Sat Apr 3 12:23:17 2004 EDT Modified files: (Branch: PHP_4_3) /php-src/ext/mbstring config.m4 /php-src NEWS Log: - Fixed bug #27849 (configure craps out on trivial syntax error). http://cvs.php.net/diff.php/php-src/ext/mbstring/config.m4?r1=1.28.2.8&r2=1.28.2.9&ty=u Index: php-src/ext/mbstring/config.m4 diff -u php-src/ext/mbstring/config.m4:1.28.2.8 php-src/ext/mbstring/config.m4:1.28.2.9 --- php-src/ext/mbstring/config.m4:1.28.2.8 Mon Dec 8 02:18:46 2003 +++ php-src/ext/mbstring/config.m4 Sat Apr 3 12:23:13 2004 @@ -1,5 +1,5 @@ dnl -dnl $Id: config.m4,v 1.28.2.8 2003/12/08 07:18:46 moriyoshi Exp $ +dnl $Id: config.m4,v 1.28.2.9 2004/04/03 17:23:13 derick Exp $ dnl AC_DEFUN([PHP_MBSTRING_ADD_SOURCES], [ @@ -34,7 +34,7 @@ PHP_ADD_BUILD_DIR([$ext_builddir/$dir]) done - if test "$ext_shared" = "no" || ! test -e "$ext_builddir/config.h.in"; then + if test "$ext_shared" = "no" -o ! -e "$ext_builddir/config.h.in"; then out="php_config.h" else out="$abs_builddir/config.h" http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.626&r2=1.1247.2.627&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.1247.2.626 php-src/NEWS:1.1247.2.627 --- php-src/NEWS:1.1247.2.626 Thu Apr 1 15:51:33 2004 +++ php-src/NEWS Sat Apr 3 12:23:14 2004 @@ -2,6 +2,7 @@ ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| 01 Apr 2004, Version 4.3.6RC1 - Synchronized bundled GD library with GD 2.0.22. (Ilia) +- Fixed bug #27849 (configure craps out on trivial syntax error). (Derick) - Fixed bug #27822 (is_resource() returns TRUE for closed resources). (Derick) - Fixed bug #27819 (problems returning reference to a reference parameter). (Ilia)
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php