summaryrefslogtreecommitdiff
path: root/Zend/zend_strtod.c
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 /Zend/zend_strtod.c
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
Diffstat (limited to 'Zend/zend_strtod.c')
-rw-r--r--Zend/zend_strtod.c1
1 files changed, 1 insertions, 0 deletions
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__