- Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs)

This commit is contained in:
foobar 2005-06-02 21:29:24 +00:00
parent 56a68b5be1
commit cb5a9f534a

View File

@ -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"