mirror of
https://github.com/php/php-src.git
synced 2024-11-23 09:54:15 +08:00
- Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs)
This commit is contained in:
parent
56a68b5be1
commit
cb5a9f534a
11
configure.in
11
configure.in
@ -143,6 +143,17 @@ PHP_PROG_LEX
|
||||
dnl Platform-specific compile settings.
|
||||
dnl -------------------------------------------------------------------------
|
||||
|
||||
dnl See bug #28605
|
||||
case $host_cpu in
|
||||
alpha*)
|
||||
if test "$GCC" = "yes"; then
|
||||
CFLAGS="$CFLAGS -mieee"
|
||||
else
|
||||
CFLAGS="$CFLAGS -ieee"
|
||||
fi
|
||||
;;
|
||||
esac
|
||||
|
||||
case $host_alias in
|
||||
*solaris*)
|
||||
CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS"
|
||||
|
Loading…
Reference in New Issue
Block a user