jani Wed Jun 24 07:43:18 2009 UTC
Modified files: (Branch: PHP_5_2)
/php-src NEWS
/php-src/scripts phpize.in
Log:
MFH:- Fixed bug #48661 (phpize broken with non-bash shells)
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.1567&r2=1.2027.2.547.2.1568&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.1567 php-src/NEWS:1.2027.2.547.2.1568
--- php-src/NEWS:1.2027.2.547.2.1567 Tue Jun 23 01:02:03 2009
+++ php-src/NEWS Wed Jun 24 07:43:18 2009
@@ -1,6 +1,7 @@
PHP
NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? 2009, PHP 5.2.11
+- Fixed bug #48661 (phpize is broken with non-bash shells). (Jani)
- Fixed bug #48636 (Error compiling of ext/date on netware). (guenter at
php.net, Ilia)
- Fixed bug #48629 (get_defined_constants() ignores categorize parameter).
http://cvs.php.net/viewvc.cgi/php-src/scripts/phpize.in?r1=1.28.2.3.2.2&r2=1.28.2.3.2.3&diff_format=u
Index: php-src/scripts/phpize.in
diff -u php-src/scripts/phpize.in:1.28.2.3.2.2
php-src/scripts/phpize.in:1.28.2.3.2.3
--- php-src/scripts/phpize.in:1.28.2.3.2.2 Mon Apr 20 15:03:57 2009
+++ php-src/scripts/phpize.in Wed Jun 24 07:43:18 2009
@@ -121,7 +121,7 @@
test -z "$PHP_AUTOCONF" && PHP_AUTOCONF=autoconf
test -z "$PHP_AUTOHEADER" && PHP_AUTOHEADER=autoheader
- if ! test -x "$PHP_AUTOCONF" && ! test -x "`$php_shtool path
$PHP_AUTOCONF`"; then
+ if test ! -x "$PHP_AUTOCONF" && test ! -x "`$php_shtool path
$PHP_AUTOCONF`"; then
cat <<EOF
Cannot find autoconf. Please check your autoconf installation and the
\$PHP_AUTOCONF environment variable. Then, rerun this script.
@@ -129,7 +129,7 @@
EOF
exit 1
fi
- if ! test -x "$PHP_AUTOHEADER" && ! test -x "`$php_shtool path
$PHP_AUTOHEADER`"; then
+ if test ! -x "$PHP_AUTOHEADER" && test ! -x "`$php_shtool path
$PHP_AUTOHEADER`"; then
cat <<EOF
Cannot find autoheader. Please check your autoconf installation and the
\$PHP_AUTOHEADER environment variable. Then, rerun this script.
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php