]> granicus.if.org Git - php/commitdiff
- fix build
authorPierre Joye <pajoye@php.net>
Thu, 1 Apr 2010 10:34:05 +0000 (10:34 +0000)
committerPierre Joye <pajoye@php.net>
Thu, 1 Apr 2010 10:34:05 +0000 (10:34 +0000)
ext/pcre/pcrelib/pcre_internal.h

index 4554657497f2afbf1b546ae4942a1f9946470e08..0938782a78af8af592406b130d9bb01061585ccc 100644 (file)
@@ -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>