]> granicus.if.org Git - php/commitdiff
fix #37062 (compile failure on ARM architecture)
authorAntony Dovgal <tony2001@php.net>
Sat, 15 Apr 2006 12:54:14 +0000 (12:54 +0000)
committerAntony Dovgal <tony2001@php.net>
Sat, 15 Apr 2006 12:54:14 +0000 (12:54 +0000)
if ARM is big endian - don't define IEEE_LITTLE_ENDIAN

NEWS
Zend/zend_strtod.c

diff --git a/NEWS b/NEWS
index 47b50a1602095bc20697ac7586b18ebb929d39ae..d7e8d68b5423294ec0797ec4a9fbfa817909bcf0 100644 (file)
--- 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)
index 3ad2c5f15517cf9f62f193be36c9dae1c011ad1f..3a469fd59c701aad92133b63f2f837df5c8bbe26 100644 (file)
@@ -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__