From 29254a477d114a6f61bbd6c23cf89bb3370ec4b2 Mon Sep 17 00:00:00 2001 From: Antony Dovgal Date: Sat, 15 Apr 2006 12:54:14 +0000 Subject: [PATCH] fix #37062 (compile failure on ARM architecture) if ARM is big endian - don't define IEEE_LITTLE_ENDIAN --- NEWS | 1 + Zend/zend_strtod.c | 1 + 2 files changed, 2 insertions(+) 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__ -- 2.50.1