sniper          Thu Jun  2 17:32:50 2005 EDT

  Modified files:              (Branch: PHP_4_3)
    /php-src    NEWS configure.in 
  Log:
  MFH: - Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs)
  
  
http://cvs.php.net/diff.php/php-src/NEWS?r1=1.1247.2.919&r2=1.1247.2.920&ty=u
Index: php-src/NEWS
diff -u php-src/NEWS:1.1247.2.919 php-src/NEWS:1.1247.2.920
--- php-src/NEWS:1.1247.2.919   Thu Jun  2 17:05:06 2005
+++ php-src/NEWS        Thu Jun  2 17:32:49 2005
@@ -70,6 +70,7 @@
   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)
http://cvs.php.net/diff.php/php-src/configure.in?r1=1.396.2.163&r2=1.396.2.164&ty=u
Index: php-src/configure.in
diff -u php-src/configure.in:1.396.2.163 php-src/configure.in:1.396.2.164
--- php-src/configure.in:1.396.2.163    Sat Apr 30 00:28:23 2005
+++ php-src/configure.in        Thu Jun  2 17:32:49 2005
@@ -1,4 +1,4 @@
-dnl ## $Id: configure.in,v 1.396.2.163 2005/04/30 04:28:23 sniper Exp $ -*- sh 
-*-
+dnl ## $Id: configure.in,v 1.396.2.164 2005/06/02 21:32:49 sniper Exp $ -*- sh 
-*-
 dnl ## Process this file with autoconf to produce a configure script.
 
 divert(1)
@@ -180,6 +180,17 @@
 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"

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to