]> granicus.if.org Git - php/commitdiff
Fixed Windows build
authorKalle Sommer Nielsen <kalle@php.net>
Thu, 8 Jul 2010 15:09:57 +0000 (15:09 +0000)
committerKalle Sommer Nielsen <kalle@php.net>
Thu, 8 Jul 2010 15:09:57 +0000 (15:09 +0000)
ext/pcre/pcrelib/pcre_internal.h

index e293602fe6a37722ac04048494d87805b9dc5361..039a14094586c80fa01fa235be25d7779e00bc97 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>