pajoye Fri Apr 24 11:34:27 2009 UTC Modified files: /php-src/win32/build config.w32 Log: - fix logic http://cvs.php.net/viewvc.cgi/php-src/win32/build/config.w32?r1=1.101&r2=1.102&diff_format=u Index: php-src/win32/build/config.w32 diff -u php-src/win32/build/config.w32:1.101 php-src/win32/build/config.w32:1.102 --- php-src/win32/build/config.w32:1.101 Thu Apr 23 20:19:31 2009 +++ php-src/win32/build/config.w32 Fri Apr 24 11:34:27 2009 @@ -1,5 +1,5 @@ // vim:ft=javascript -// $Id: config.w32,v 1.101 2009/04/23 20:19:31 pajoye Exp $ +// $Id: config.w32,v 1.102 2009/04/24 11:34:27 pajoye Exp $ // "Master" config file; think of it as a configure.in // equivalent. @@ -150,11 +150,12 @@ if (VCVERS >= 1500 && PHP_MP != 'disable') { if(PHP_MP == 'auto') { ADD_FLAG('CFLAGS', ' /MP '); - } - if(parseInt(PHP_MP) != 0) { - ADD_FLAG('CFLAGS', ' /MP'+ PHP_MP +' '); } else { - STDOUT.WriteLine('WARNING: Invalid argument for MP: ' + PHP_MP); + if(parseInt(PHP_MP) != 0) { + ADD_FLAG('CFLAGS', ' /MP'+ PHP_MP +' '); + } else { + STDOUT.WriteLine('WARNING: Invalid argument for MP: ' + PHP_MP); + } } }
-- PHP CVS Mailing List (http://www.php.net/) To unsubscribe, visit: http://www.php.net/unsub.php