From: Derick Rethans Date: Sat, 3 Apr 2004 17:23:14 +0000 (+0000) Subject: - Fixed bug #27849 (configure craps out on trivial syntax error). X-Git-Tag: php-4.3.6RC2~11 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=e85ca0efce1ac2581c02cda742255673de573ec4;p=php - Fixed bug #27849 (configure craps out on trivial syntax error). --- diff --git a/NEWS b/NEWS index 759bef2c32..90dd21d594 100644 --- a/NEWS +++ b/NEWS @@ -2,6 +2,7 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| 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) diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4 index 0fdf550cbd..736d42db7d 100644 --- a/ext/mbstring/config.m4 +++ b/ext/mbstring/config.m4 @@ -34,7 +34,7 @@ AC_DEFUN([PHP_MBSTRING_EXTENSION], [ 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"