From e85ca0efce1ac2581c02cda742255673de573ec4 Mon Sep 17 00:00:00 2001 From: Derick Rethans Date: Sat, 3 Apr 2004 17:23:14 +0000 Subject: [PATCH] - Fixed bug #27849 (configure craps out on trivial syntax error). --- NEWS | 1 + ext/mbstring/config.m4 | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) 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" -- 2.50.1