]> granicus.if.org Git - php/commitdiff
MFH: - Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs)
authorfoobar <sniper@php.net>
Thu, 2 Jun 2005 21:32:49 +0000 (21:32 +0000)
committerfoobar <sniper@php.net>
Thu, 2 Jun 2005 21:32:49 +0000 (21:32 +0000)
NEWS
configure.in

diff --git a/NEWS b/NEWS
index 1e7763d9cbef4aa9afe8be1d6d4f2d4443829bdc..56d6a25074f21895b2bdc40475c57054012483e8 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -70,6 +70,7 @@ PHP 4                                                                      NEWS
   handler). (Tony)
 - Fixed bug #29944 (Function defined in switch, crashes). (Dmitry)
 - Fixed bug #29338 (unencoded spaces get ignored after certain tags). (Ilia)
+- Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs). (Jani)
 
 31 Mar 2005, Version 4.3.11
 - Added Oracle Instant Client support. (cjbj at hotmail dot com, Tony)
index 77218783161bbe8719dcc489cd573db3fa281415..7e300ed2b77b4809e64a6d350fbe6e10ae68a11e 100644 (file)
@@ -180,6 +180,17 @@ PHP_C_BIGENDIAN
 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"