sniper Thu Jun 2 17:32:10 2005 EDT Modified files: (Branch: PHP_5_0) /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.1760.2.414&r2=1.1760.2.415&ty=u Index: php-src/NEWS diff -u php-src/NEWS:1.1760.2.414 php-src/NEWS:1.1760.2.415 --- php-src/NEWS:1.1760.2.414 Thu Jun 2 17:04:43 2005 +++ php-src/NEWS Thu Jun 2 17:32:09 2005 @@ -142,6 +142,7 @@ mem vars und others). (Dmitry) - Fixed bug #28839 (SIGSEGV in interactive mode (php -a)). (kameshj at fastmail dot fm) +- Fixed bug #28605 (Need to use -[m]ieee option for Alpha CPUs). (Jani) - Fixed bug #22836 (returning reference to uninitialized variable). (Dmitry) 31 Mar 2005, PHP 5.0.4 http://cvs.php.net/diff.php/php-src/configure.in?r1=1.514.2.50&r2=1.514.2.51&ty=u Index: php-src/configure.in diff -u php-src/configure.in:1.514.2.50 php-src/configure.in:1.514.2.51 --- php-src/configure.in:1.514.2.50 Sat Apr 30 00:30:19 2005 +++ php-src/configure.in Thu Jun 2 17:32:09 2005 @@ -1,4 +1,4 @@ -dnl ## $Id: configure.in,v 1.514.2.50 2005/04/30 04:30:19 sniper Exp $ -*- sh -*- +dnl ## $Id: configure.in,v 1.514.2.51 2005/06/02 21:32:09 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