iliaa Mon Oct 2 15:34:38 2006 UTC
Modified files: (Branch: PHP_5_2)
/php-src acinclude.m4 NEWS
Log:
Fixed bug #39004 (Fixed generation of config.nice with autoconf 2.60).
http://cvs.php.net/viewvc.cgi/php-src/acinclude.m4?r1=1.332.2.14.2.2&r2=1.332.2.14.2.3&diff_format=u
Index: php-src/acinclude.m4
diff -u php-src/acinclude.m4:1.332.2.14.2.2 php-src/acinclude.m4:1.332.2.14.2.3
--- php-src/acinclude.m4:1.332.2.14.2.2 Fri Jun 16 08:01:03 2006
+++ php-src/acinclude.m4 Mon Oct 2 15:34:38 2006
@@ -1,5 +1,5 @@
dnl
-dnl $Id: acinclude.m4,v 1.332.2.14.2.2 2006/06/16 08:01:03 sesser Exp $
+dnl $Id: acinclude.m4,v 1.332.2.14.2.3 2006/10/02 15:34:38 iliaa Exp $
dnl
dnl This file contains local autoconf functions.
dnl
@@ -2503,9 +2503,21 @@
fi
done
- for arg in [$]0 "[$]@"; do
- echo "'[$]arg' \\" >> $1
- CONFIGURE_COMMAND="$CONFIGURE_COMMAND '[$]arg'"
+ echo "'[$]0'" >> $1
+ for arg in $ac_configure_args; do
+ if test `expr substr $arg 1 1` != "'"; then
+ if test `expr substr $arg 1 2` != '--'; then
+ break;
+ fi
+ echo "'[$]arg' \\" >> $1
+ CONFIGURE_COMMAND="$CONFIGURE_COMMAND '[$]arg'"
+ else
+ if test `expr substr $arg 2 2` != '--'; then
+ break;
+ fi
+ echo "[$]arg \\" >> $1
+ CONFIGURE_COMMAND="$CONFIGURE_COMMAND [$]arg"
+ fi
done
echo '"[$]@"' >> $1
chmod +x $1
http://cvs.php.net/viewvc.cgi/php-src/NEWS?r1=1.2027.2.547.2.276&r2=1.2027.2.547.2.277&diff_format=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.2027.2.547.2.276 php-src/NEWS:1.2027.2.547.2.277
--- php-src/NEWS:1.2027.2.547.2.276 Mon Oct 2 12:16:35 2006
+++ php-src/NEWS Mon Oct 2 15:34:38 2006
@@ -6,6 +6,8 @@
- Fixed mess with CGI/CLI -d option (now it works with cgi; constants are
working exactly like in php.ini; with FastCGI -d affects all requests).
(Dmitry)
+- Fixed bug #39004 (Fixed generation of config.nice with autoconf 2.60).
+ (Ilia)
- Fixed bug #39003 (__autoload() is called for type hinting). (Dmitry, Tony)
- Fixed bug #39001 (ReflectionProperty returns incorrect declaring class for
protected properties). (Tony)
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php