pajoye                                   Thu, 01 Apr 2010 10:34:05 +0000

Revision: http://svn.php.net/viewvc?view=revision&revision=297262

Log:
- fix build

Changed paths:
    U   php/php-src/branches/PHP_5_3/ext/pcre/pcrelib/pcre_internal.h
    U   php/php-src/trunk/ext/pcre/pcrelib/pcre_internal.h

Modified: php/php-src/branches/PHP_5_3/ext/pcre/pcrelib/pcre_internal.h
===================================================================
--- php/php-src/branches/PHP_5_3/ext/pcre/pcrelib/pcre_internal.h       
2010-04-01 10:31:52 UTC (rev 297261)
+++ php/php-src/branches/PHP_5_3/ext/pcre/pcrelib/pcre_internal.h       
2010-04-01 10:34:05 UTC (rev 297262)
@@ -191,8 +191,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>

Modified: php/php-src/trunk/ext/pcre/pcrelib/pcre_internal.h
===================================================================
--- php/php-src/trunk/ext/pcre/pcrelib/pcre_internal.h  2010-04-01 10:31:52 UTC 
(rev 297261)
+++ php/php-src/trunk/ext/pcre/pcrelib/pcre_internal.h  2010-04-01 10:34:05 UTC 
(rev 297262)
@@ -192,7 +192,9 @@
 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>

-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to