summaryrefslogtreecommitdiff
path: root/ext/pcre/pcrelib/pcre_internal.h
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2010-01-21 23:23:17 +0000
committerPierre Joye <pajoye@php.net>2010-01-21 23:23:17 +0000
commitadd029adeff9955eeb1f1d9534cb8ee8d787438a (patch)
tree22d76450fa30bdd6b38e2bb80138f51156470a2a /ext/pcre/pcrelib/pcre_internal.h
parentd9449d44a20f143194c021c504634ebca97702f1 (diff)
downloadphp-git-add029adeff9955eeb1f1d9534cb8ee8d787438a.tar.gz
- fix win build, use bundled stdint
Diffstat (limited to 'ext/pcre/pcrelib/pcre_internal.h')
-rw-r--r--ext/pcre/pcrelib/pcre_internal.h6
1 files changed, 5 insertions, 1 deletions
diff --git a/ext/pcre/pcrelib/pcre_internal.h b/ext/pcre/pcrelib/pcre_internal.h
index aa1983e8f9..1713a757f7 100644
--- a/ext/pcre/pcrelib/pcre_internal.h
+++ b/ext/pcre/pcrelib/pcre_internal.h
@@ -192,7 +192,11 @@ stdint.h is available, include it; it may define INT64_MAX. The macro int64_t
may be set by "configure". */
#if HAVE_STDINT_H
-#include <stdint.h>
+# ifdef PHP_WIN32
+# include "win32/php_stdint.h"
+# else
+# include <stdint.h>
+# endif
#endif
#if defined INT64_MAX || defined int64_t