summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDerick Rethans <derick@php.net>2004-12-14 08:41:35 +0000
committerDerick Rethans <derick@php.net>2004-12-14 08:41:35 +0000
commitd21cb5b3451c4e2827207d8f22ffd34b874bde8c (patch)
treeffbb9dc7258ac07b26717f2e14ce9a729da099c5
parentcb5aa998b91eeb25a93e4828520164d0450344f8 (diff)
downloadphp-git-d21cb5b3451c4e2827207d8f22ffd34b874bde8c.tar.gz
- MFH: Fixed compile error related to bug #28605.
#- But it does not *fix* bug #28605.
-rw-r--r--Zend/zend_strtod.c4
-rw-r--r--configure.in1
2 files changed, 5 insertions, 0 deletions
diff --git a/Zend/zend_strtod.c b/Zend/zend_strtod.c
index 07862f0733..125d072a26 100644
--- a/Zend/zend_strtod.c
+++ b/Zend/zend_strtod.c
@@ -131,6 +131,10 @@ static char *rcsid = "$OpenBSD: strtod.c,v 1.19 2004/02/03 16:52:11 drahn Exp $"
#define u_int32_t uint32_t
#endif
+#ifdef HAVE_SYS_BITYPES_H
+#include <sys/bitypes.h>
+#endif
+
#define Long int32_t
#define ULong u_int32_t
diff --git a/configure.in b/configure.in
index a795b70f5a..22242414aa 100644
--- a/configure.in
+++ b/configure.in
@@ -351,6 +351,7 @@ stdlib.h \
string.h \
syslog.h \
sysexits.h \
+sys/bitypes.h \
sys/ioctl.h \
sys/file.h \
sys/mman.h \