From: Derick Rethans Date: Thu, 16 Dec 2004 13:06:58 +0000 (+0000) Subject: - MF43: Fixed bug #31107 (strtod on solaris9/intel) X-Git-Tag: RELEASE_0_2~512 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=16c6679125afb5d9abb91f4255a5bed73c263341;p=php - MF43: Fixed bug #31107 (strtod on solaris9/intel) --- diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c index 4b8c0fcb49..b5da3a02b7 100644 --- a/Zend/zend_strtod.c +++ b/Zend/zend_strtod.c @@ -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