summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-07-12 08:51:41 +0000
committerPierre Joye <pajoye@php.net>2010-07-12 08:51:41 +0000
commitc516bfd602032225b9974b9008bfc1e0b1ba09ce (patch)
tree530a15f1611233cf35a625dd06438536d4439faf
parent423c85fd8b2e3b640124e674b7a67ba269122b80 (diff)
downloadphp-git-c516bfd602032225b9974b9008bfc1e0b1ba09ce.tar.gz
- MFH pcre windows build fix
-rw-r--r--ext/pcre/pcrelib/pcre_internal.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/ext/pcre/pcrelib/pcre_internal.h b/ext/pcre/pcrelib/pcre_internal.h
index e293602fe6..039a140945 100644
--- a/ext/pcre/pcrelib/pcre_internal.h
+++ b/ext/pcre/pcrelib/pcre_internal.h
@@ -192,7 +192,9 @@ stdint.h is available, include it; it may define INT64_MAX. Systems that do not
have stdint.h (e.g. Solaris) may have inttypes.h. The macro int64_t may be set
by "configure". */
-#if HAVE_STDINT_H
+#ifdef PHP_WIN32
+#include "win32/php_stdint.h"
+#elif HAVE_STDINT_H
#include <stdint.h>
#elif HAVE_INTTYPES_H
#include <inttypes.h>