summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAntony Dovgal <tony2001@php.net>2006-04-15 12:54:14 +0000
committerAntony Dovgal <tony2001@php.net>2006-04-15 12:54:14 +0000
commit29254a477d114a6f61bbd6c23cf89bb3370ec4b2 (patch)
treeeeb331e6a169b1896c622a06d55d4db8a40e6b2b
parentf233299f96f3014f74a867f0c69e3a330c0db6a8 (diff)
downloadphp-git-29254a477d114a6f61bbd6c23cf89bb3370ec4b2.tar.gz
fix #37062 (compile failure on ARM architecture)
if ARM is big endian - don't define IEEE_LITTLE_ENDIAN
-rw-r--r--NEWS1
-rw-r--r--Zend/zend_strtod.c1
2 files changed, 2 insertions, 0 deletions
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__