pajoye Thu, 21 Jan 2010 23:23:17 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=293825
Log: - fix win build, use bundled stdint 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-01-21 22:58:08 UTC (rev 293824) +++ php/php-src/branches/PHP_5_3/ext/pcre/pcrelib/pcre_internal.h 2010-01-21 23:23:17 UTC (rev 293825) @@ -192,7 +192,11 @@ 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 Modified: php/php-src/trunk/ext/pcre/pcrelib/pcre_internal.h =================================================================== --- php/php-src/trunk/ext/pcre/pcrelib/pcre_internal.h 2010-01-21 22:58:08 UTC (rev 293824) +++ php/php-src/trunk/ext/pcre/pcrelib/pcre_internal.h 2010-01-21 23:23:17 UTC (rev 293825) @@ -192,7 +192,11 @@ 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
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php