diff options
author | Pierre Joye <pajoye@php.net> | 2010-04-01 10:34:05 +0000 |
---|---|---|
committer | Pierre Joye <pajoye@php.net> | 2010-04-01 10:34:05 +0000 |
commit | 60176163f13dae8fe1902b3f1c4cc9e5970d8ba7 (patch) | |
tree | 552fb5245f6dc56e02825594b0cbbed5abd61f35 | |
parent | b529350d4a90aa326daaef5c51de49d35d92992f (diff) | |
download | php-git-60176163f13dae8fe1902b3f1c4cc9e5970d8ba7.tar.gz |
- fix build
-rw-r--r-- | ext/pcre/pcrelib/pcre_internal.h | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/pcre/pcrelib/pcre_internal.h b/ext/pcre/pcrelib/pcre_internal.h index 4554657497..0938782a78 100644 --- a/ext/pcre/pcrelib/pcre_internal.h +++ b/ext/pcre/pcrelib/pcre_internal.h @@ -191,8 +191,9 @@ arithmetic. Handle this by defining a macro for the appropriate type. If 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> |