From: Antony Dovgal Date: Sat, 15 Apr 2006 12:54:14 +0000 (+0000) Subject: fix #37062 (compile failure on ARM architecture) X-Git-Tag: php-5.1.3RC3~23 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=29254a477d114a6f61bbd6c23cf89bb3370ec4b2;p=php fix #37062 (compile failure on ARM architecture) if ARM is big endian - don't define IEEE_LITTLE_ENDIAN --- diff --git a/NEWS b/NEWS index 47b50a1602..d7e8d68b54 100644 --- a/NEWS +++ b/NEWS @@ -1,6 +1,7 @@ PHP NEWS ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||| ?? Apr 2006, PHP 5.1.3 +- Fixed bug #37062 (compile failure on ARM architecture). (Tony) - Fixed bug #37061 (curl_exec() doesn't zero-terminate binary strings). (Tony) - Fixed bug #37060 (Type of retval of Countable::count() is not checked). (Johannes) diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c index 3ad2c5f155..3a469fd59c 100644 --- a/Zend/zend_strtod.c +++ b/Zend/zend_strtod.c @@ -130,6 +130,7 @@ typedef unsigned long int uint32_t; * but the word order is big endian. */ #define IEEE_BIG_ENDIAN +#undef IEEE_LITTLE_ENDIAN #endif #ifdef __vax__