- 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)
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