summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRasmus Lerdorf <rasmus@php.net>2011-01-06 22:48:20 +0000
committerRasmus Lerdorf <rasmus@php.net>2011-01-06 22:48:20 +0000
commitf3643fde6b645d2e7c8b86f4271e74263f98701d (patch)
tree2dfab12c13698401ff217154c6d59327484e1ab7
parent6e6ad948826b395a11a47a4cdc6106e6d8b0da82 (diff)
downloadphp-git-f3643fde6b645d2e7c8b86f4271e74263f98701d.tar.gz
Fix bug #53682
-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 7ff6c4cfac..b4ca858d39 100644
--- a/NEWS
+++ b/NEWS
@@ -1,6 +1,7 @@
PHP NEWS
|||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
?? ??? ????, PHP 5.2.18
+- Fixed bug #53682 (Fix compile on the VAX). (Rasmus, jklos)
06 Jan 2010, PHP 5.2.17
- Fixed Bug #53632 (infinite loop with x87 fpu). (CVE-2010-4645) (Scott,
diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c
index 04d92d6c38..6ffefba553 100644
--- a/Zend/zend_strtod.c
+++ b/Zend/zend_strtod.c
@@ -164,6 +164,7 @@ typedef unsigned long int uint32_t;
#ifdef __vax__
#define VAX
+#undef IEEE_LITTLE_ENDIAN
#endif
#if defined(_MSC_VER)