mirror of
https://github.com/php/php-src.git
synced 2026-04-04 22:52:40 +02:00
- Fixed bug #50496 (Use of <stdbool.h> is valid only in a c99 compilation environment.)
This commit is contained in:
2
NEWS
2
NEWS
@@ -9,6 +9,8 @@ PHP NEWS
|
||||
- Changed "post_max_size" php.ini directive to allow unlimited post size by
|
||||
setting it to 0. (Rasmus)
|
||||
|
||||
- Fixed bug #50496 (Use of <stdbool.h> is valid only in a c99 compilation
|
||||
environment. (Sriram)
|
||||
- Added support for SHA-256 and SHA-512 to php's crypt. (Pierre)
|
||||
- Added realpath_cache_size() and realpath_cache_get() functions. (Stas)
|
||||
- Added FILTER_FLAG_STRIP_BACKTICK option to the filter extension. (Ilia)
|
||||
|
||||
@@ -202,7 +202,12 @@ case $host_cpu in
|
||||
;;
|
||||
sparc*)
|
||||
if test "$SUNCC" = "yes"; then
|
||||
CFLAGS="$CFLAGS -xmemalign=8s"
|
||||
CFLAGS="$CFLAGS -xc99=all -xmemalign=8s"
|
||||
fi
|
||||
;;
|
||||
i386)
|
||||
if test "$SUNCC" = "yes"; then
|
||||
CFLAGS="$CFLAGS -xc99=all"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
Reference in New Issue
Block a user