pajoye Fri Apr 24 15:18:37 2009 UTC
Modified files: (Branch: PHP_5_3)
/php-src/win32/build config.w32
Log:
- make MP survive --disable-all (=disable to disable it)
http://cvs.php.net/viewvc.cgi/php-src/win32/build/config.w32?r1=1.40.2.8.2.10.2.47&r2=1.40.2.8.2.10.2.48&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.47
php-src/win32/build/config.w32:1.40.2.8.2.10.2.48
--- php-src/win32/build/config.w32:1.40.2.8.2.10.2.47 Fri Apr 24 11:34:38 2009
+++ php-src/win32/build/config.w32 Fri Apr 24 15:18:37 2009
@@ -1,5 +1,5 @@
// vim:ft=javascript
-// $Id: config.w32,v 1.40.2.8.2.10.2.47 2009/04/24 11:34:38 pajoye Exp $
+// $Id: config.w32,v 1.40.2.8.2.10.2.48 2009/04/24 15:18:37 pajoye Exp $
// "Master" config file; think of it as a configure.in
// equivalent.
@@ -148,7 +148,8 @@
ARG_WITH('mp', 'Tell VC9 use up to [n,auto,disable] processes for
compilation', 'auto');
if (VCVERS >= 1500 && PHP_MP != 'disable') {
- if(PHP_MP == 'auto') {
+ // no from disable-all
+ if(PHP_MP == 'auto' || PHP_MP == 'no') {
ADD_FLAG('CFLAGS', ' /MP ');
} else {
if(parseInt(PHP_MP) != 0) {
--
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php