pajoye Fri, 22 Jan 2010 09:06:13 +0000 Revision: http://svn.php.net/viewvc?view=revision&revision=293842
Log: - fix win build Changed paths: U php/php-src/branches/PHP_5_2/ext/pcre/pcrelib/pcre_internal.h Modified: php/php-src/branches/PHP_5_2/ext/pcre/pcrelib/pcre_internal.h =================================================================== --- php/php-src/branches/PHP_5_2/ext/pcre/pcrelib/pcre_internal.h 2010-01-22 08:32:14 UTC (rev 293841) +++ php/php-src/branches/PHP_5_2/ext/pcre/pcrelib/pcre_internal.h 2010-01-22 09:06:13 UTC (rev 293842) @@ -192,7 +192,11 @@ may be set by "configure". */ #if HAVE_STDINT_H -#include <stdint.h> +#if defined(PHP_WIN32) && !defined(int64_t) +typedef __int64 int64_t; +# 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