From: Pierre Joye Date: Thu, 21 Jan 2010 23:23:17 +0000 (+0000) Subject: - fix win build, use bundled stdint X-Git-Tag: php-5.4.0alpha1~191^2~2055 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=54fe1be95e5e9227432c19723a1c5dd3104dac7b;p=php - fix win build, use bundled stdint --- 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 +# ifdef PHP_WIN32 +# include "win32/php_stdint.h" +# else +# include +# endif #endif #if defined INT64_MAX || defined int64_t