moriyoshi Mon Dec 8 02:18:20 2003 EDT Modified files: /php-src/ext/mbstring config.m4 Log: Avoid using non-portable test syntax. This was causing problems on Solaris. (Reported by Uwe Schindler. Thanks!) Index: php-src/ext/mbstring/config.m4 diff -u php-src/ext/mbstring/config.m4:1.44 php-src/ext/mbstring/config.m4:1.45 --- php-src/ext/mbstring/config.m4:1.44 Sun Dec 7 10:41:50 2003 +++ php-src/ext/mbstring/config.m4 Mon Dec 8 02:18:20 2003 @@ -1,5 +1,5 @@ dnl -dnl $Id: config.m4,v 1.44 2003/12/07 15:41:50 sniper Exp $ +dnl $Id: config.m4,v 1.45 2003/12/08 07:18:20 moriyoshi 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" -o ! -e "$ext_builddir/config.h.in"; then + if test "$ext_shared" = "no" || ! test -e "$ext_builddir/config.h.in"; then out="php_config.h" else out="$abs_builddir/config.h"
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php