From: Gustavo André dos Santos Lopes Date: Fri, 24 Dec 2010 19:01:25 +0000 (+0000) Subject: - Fix PCRE build on Windows; closes bug #53606. X-Git-Tag: php-5.3.6RC1~190 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=ff32c32fba0c257f971df39fc85c20e0cd911d58;p=php - Fix PCRE build on Windows; closes bug #53606. --- diff --git a/ext/pcre/pcrelib/pcre_internal.h b/ext/pcre/pcrelib/pcre_internal.h index 5f736d13ac..6ec0b7a541 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