]> granicus.if.org Git - php/commitdiff
- MF43: Fixed bug #31107 (strtod on solaris9/intel)
authorDerick Rethans <derick@php.net>
Thu, 16 Dec 2004 13:06:46 +0000 (13:06 +0000)
committerDerick Rethans <derick@php.net>
Thu, 16 Dec 2004 13:06:46 +0000 (13:06 +0000)
NEWS
Zend/zend_strtod.c

diff --git a/NEWS b/NEWS
index d76a04710b028a79e014d611541cf736891b4d8a..470be46f57754d076b7627d41743829e218a1646 100644 (file)
--- a/NEWS
+++ b/NEWS
@@ -3,6 +3,7 @@ PHP                                                                        NEWS
 ?? ??? 2005, PHP 5.0.4
 - Fixed bug #31111 (Compile failure of zend_strtod.c). (Derick)
 - Fixed bug #31110 (PHP 4.3.10 does not compile on Tru64 UNIX 5.1B). (Derick)
+- Fixed bug #31107 (Complile failure on Solaris 9 (Intel) and gcc 3.4.3). (Derick)
 - Fixed bug #31056 (php_std_date() returns invalid formatted date if 
   y2k_compliance is On). (Ilia)
 
index 4b8c0fcb49fc2125e1a0f46c4f6a5b647fa7a791..b5da3a02b73b4ecebc03622ed464afb82cb01b4b 100644 (file)
@@ -127,7 +127,7 @@ static char *rcsid = "$OpenBSD: strtod.c,v 1.19 2004/02/03 16:52:11 drahn Exp $"
 #define IEEE_LITTLE_ENDIAN
 #endif
 
-#if defined(__sparc__) || defined(__ppc__)
+#if defined(__sparc__) || defined(__ppc__) || defined(__sun__)
 #ifndef __linux__
 #define u_int32_t uint32_t
 #endif