scottmac Sun Mar 16 23:54:07 2008 UTC Modified files: (Branch: PHP_5_3) /php-src/win32/build config.w32 Log: Make re2c required http://cvs.php.net/viewvc.cgi/php-src/win32/build/config.w32?r1=1.40.2.8.2.10.2.6&r2=1.40.2.8.2.10.2.7&diff_format=u Index: php-src/win32/build/config.w32 diff -u php-src/win32/build/config.w32:1.40.2.8.2.10.2.6 php-src/win32/build/config.w32:1.40.2.8.2.10.2.7 --- php-src/win32/build/config.w32:1.40.2.8.2.10.2.6 Sun Mar 16 22:26:42 2008 +++ php-src/win32/build/config.w32 Sun Mar 16 23:54:06 2008 @@ -1,5 +1,5 @@ // vim:ft=javascript -// $Id: config.w32,v 1.40.2.8.2.10.2.6 2008/03/16 22:26:42 helly Exp $ +// $Id: config.w32,v 1.40.2.8.2.10.2.7 2008/03/16 23:54:06 scottmac Exp $ // "Master" config file; think of it as a configure.in // equivalent. @@ -57,7 +57,9 @@ if (!PATH_PROG('bison')) { ERROR('bison is required') } -PATH_PROG('re2c'); +if (!PATH_PROG('re2c')) { + ERROR('re2c is required') +} PATH_PROG('zip'); PATH_PROG('lemon');
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php