diff options
| author | Kalle Sommer Nielsen <kalle@php.net> | 2010-07-08 15:09:57 +0000 | 
|---|---|---|
| committer | Kalle Sommer Nielsen <kalle@php.net> | 2010-07-08 15:09:57 +0000 | 
| commit | b4c573c7ec79affa635823cb685ed0fcf29a2b3a (patch) | |
| tree | 214cf9c12f593838a0d94e73a78d418ce1b4daa8 | |
| parent | 561f133ae14893d660a3a2955c19feb3d0826191 (diff) | |
| download | php-git-b4c573c7ec79affa635823cb685ed0fcf29a2b3a.tar.gz | |
Fixed Windows build
| -rw-r--r-- | ext/pcre/pcrelib/pcre_internal.h | 4 | 
1 files changed, 3 insertions, 1 deletions
| diff --git a/ext/pcre/pcrelib/pcre_internal.h b/ext/pcre/pcrelib/pcre_internal.h index e293602fe6..039a140945 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 <stdint.h>  #elif HAVE_INTTYPES_H  #include <inttypes.h> | 
