]> granicus.if.org Git - php/commitdiff
- Fix PCRE build on Windows; closes bug #53606.
authorGustavo André dos Santos Lopes <cataphract@php.net>
Fri, 24 Dec 2010 19:01:25 +0000 (19:01 +0000)
committerGustavo André dos Santos Lopes <cataphract@php.net>
Fri, 24 Dec 2010 19:01:25 +0000 (19:01 +0000)
ext/pcre/pcrelib/pcre_internal.h

index 5f736d13acd09073312476d0acbb4d71b4866abd..6ec0b7a5412fa0d380036fa21953b2102c3bd43e 100644 (file)
@@ -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>