pajoye Sat Jul 12 23:54:53 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/ext/mbstring/oniguruma regint.h Log: - MFH: fix build with VC9 PSDK6.x http://cvs.php.net/viewvc.cgi/php-src/ext/mbstring/oniguruma/regint.h?r1=1.5.4.5.2.1&r2=1.5.4.5.2.2&diff_format=u Index: php-src/ext/mbstring/oniguruma/regint.h diff -u php-src/ext/mbstring/oniguruma/regint.h:1.5.4.5.2.1 php-src/ext/mbstring/oniguruma/regint.h:1.5.4.5.2.2 --- php-src/ext/mbstring/oniguruma/regint.h:1.5.4.5.2.1 Mon Dec 31 07:17:09 2007 +++ php-src/ext/mbstring/oniguruma/regint.h Sat Jul 12 23:54:53 2008 @@ -130,7 +130,9 @@ #if defined(_WIN32) && !defined(__GNUC__) #define xalloca _alloca #ifdef NOT_RUBY -#define vsnprintf _vsnprintf +#if _MSC_VER < 1500 +# define vsnprintf _vsnprintf +#endif #endif #else #define xalloca alloca
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php