From: Anatol Belski Date: Tue, 28 Apr 2015 11:15:39 +0000 (+0200) Subject: fix VC9 build with PCRE X-Git-Tag: php-5.5.25RC1~8^2 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=9c5c3ff0220f689954ada24b94228b6f3591e37d;p=php fix VC9 build with PCRE --- diff --git a/ext/pcre/pcrelib/pcre_internal.h b/ext/pcre/pcrelib/pcre_internal.h index 02d3ab17c5..19d18a830a 100644 --- a/ext/pcre/pcrelib/pcre_internal.h +++ b/ext/pcre/pcrelib/pcre_internal.h @@ -229,11 +229,15 @@ 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". */ +#ifdef PHP_WIN32 +#include "win32/php_stdint.h" +#else #if defined HAVE_STDINT_H #include #elif defined HAVE_INTTYPES_H #include #endif +#endif #if defined INT64_MAX || defined int64_t #define INT64_OR_DOUBLE int64_t