pajoye          Tue Jan  6 20:51:37 2009 UTC

  Modified files:              
    /php-src/win32/build        config.w32 
  Log:
  - MFB: add multi threaded build support (automatic detection of the number of 
cpus, add a custom number if you prefer to use only a few of your available 
cores)
  
http://cvs.php.net/viewvc.cgi/php-src/win32/build/config.w32?r1=1.94&r2=1.95&diff_format=u
Index: php-src/win32/build/config.w32
diff -u php-src/win32/build/config.w32:1.94 php-src/win32/build/config.w32:1.95
--- php-src/win32/build/config.w32:1.94 Tue Jan  6 20:47:06 2009
+++ php-src/win32/build/config.w32      Tue Jan  6 20:51:37 2009
@@ -1,5 +1,5 @@
 // vim:ft=javascript
-// $Id: config.w32,v 1.94 2009/01/06 20:47:06 pajoye Exp $
+// $Id: config.w32,v 1.95 2009/01/06 20:51:37 pajoye Exp $
 // "Master" config file; think of it as a configure.in
 // equivalent.
 
@@ -145,6 +145,10 @@
        }
 }
 
+if (VCVERS >= 1500) {
+       ADD_FLAG('CFLAGS', ' /MP ');
+}
+
 // General link flags
 DEFINE("LDFLAGS", "/nologo /version:" +
        PHP_VERSION + "." + PHP_MINOR_VERSION + "." + PHP_RELEASE_VERSION);



-- 
PHP CVS Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to