]> granicus.if.org Git - php/commitdiff
- fix win build, use bundled stdint
authorPierre Joye <pajoye@php.net>
Thu, 21 Jan 2010 23:23:17 +0000 (23:23 +0000)
committerPierre Joye <pajoye@php.net>
Thu, 21 Jan 2010 23:23:17 +0000 (23:23 +0000)
ext/pcre/pcrelib/pcre_internal.h

index aa1983e8f9917933601b3deec91cd2d29ba1861e..1713a757f787663c38706f1cd8c7024ba199c772 100644 (file)
@@ -192,7 +192,11 @@ stdint.h is available, include it; it may define INT64_MAX. The macro int64_t
 may be set by "configure". */
 
 #if HAVE_STDINT_H
-#include <stdint.h>
+# ifdef PHP_WIN32
+#  include "win32/php_stdint.h"
+# else
+#  include <stdint.h>
+# endif
 #endif
 
 #if defined INT64_MAX || defined int64_t