From 323a19116c8660aee340eeab8e0981dd0acd01b4 Mon Sep 17 00:00:00 2001 From: Ilia Alshanetsky Date: Thu, 10 Jun 2004 14:06:20 +0000 Subject: [PATCH] MFH: Fixed bug #28723 (Fixed mbstring config.m4 to work on OSes where test command does not support -e parameter). --- NEWS | 2 ++ ext/mbstring/config.m4 | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/NEWS b/NEWS index 8acada8cf0..a90bb2c343 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,8 @@ PHP 4 NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? ??? 2004, Version 4.3.8 +- Fixed bug #28723 (Fixed mbstring config.m4 to work on OSes where test + command does not support -e parameter). (Ilia) - Fixed bug #28692 (\0 in Authenticate header passed via safe_mode). (Ilia) - Fixed bug #28670 (WWW-Authentication header mangling with PCRE in safe_mode adds extra spaces). (Ilia) diff --git a/ext/mbstring/config.m4 b/ext/mbstring/config.m4 index c6a0cb7589..371bf8c07f 100644 --- a/ext/mbstring/config.m4 +++ b/ext/mbstring/config.m4 @@ -37,7 +37,7 @@ AC_DEFUN([PHP_MBSTRING_EXTENSION], [ if test "$ext_shared" = "no"; then out="php_config.h" else - if test -e "$ext_builddir/config.h.in"; then + if test -f "$ext_builddir/config.h.in"; then out="$abs_builddir/config.h" else out="php_config.h" -- 2.40.0