pajoye Tue Jan 6 20:50:57 2009 UTC
Modified files: (Branch: PHP_5_3)
/php-src/win32/build config.w32
Log:
- 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.40.2.8.2.10.2.40&r2=1.40.2.8.2.10.2.41&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.40
php-src/win32/build/config.w32:1.40.2.8.2.10.2.41
--- php-src/win32/build/config.w32:1.40.2.8.2.10.2.40 Tue Jan 6 20:46:36 2009
+++ php-src/win32/build/config.w32 Tue Jan 6 20:50:57 2009
@@ -1,5 +1,5 @@
// vim:ft=javascript
-// $Id: config.w32,v 1.40.2.8.2.10.2.40 2009/01/06 20:46:36 pajoye Exp $
+// $Id: config.w32,v 1.40.2.8.2.10.2.41 2009/01/06 20:50:57 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