From d3a09a2fee254e508ae07960a35fdbf90c6861a7 Mon Sep 17 00:00:00 2001 From: Pierre Joye Date: Thu, 1 Apr 2010 10:38:21 +0000 Subject: [PATCH] - fix build --- ext/pcre/pcrelib/pcre_internal.h | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/ext/pcre/pcrelib/pcre_internal.h b/ext/pcre/pcrelib/pcre_internal.h index 4554657497..d7de65e246 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 #elif HAVE_INTTYPES_H #include -- 2.50.1