summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorPierre Joye <pajoye@php.net>2009-04-24 15:18:37 +0000
committerPierre Joye <pajoye@php.net>2009-04-24 15:18:37 +0000
commit30b30dda1195c1c60e690bdb9d869fe5addbde2c (patch)
treea6edc60f8ced86c0c235af884b2b15c12b94b1a8 /win32
parentf4c90952b081d45b17b860d694215fe7986d66dc (diff)
downloadphp-git-30b30dda1195c1c60e690bdb9d869fe5addbde2c.tar.gz
- make MP survive --disable-all (=disable to disable it)
Diffstat (limited to 'win32')
-rw-r--r--win32/build/config.w323
1 files changed, 2 insertions, 1 deletions
diff --git a/win32/build/config.w32 b/win32/build/config.w32
index d43982498f..702e332b64 100644
--- a/win32/build/config.w32
+++ b/win32/build/config.w32
@@ -148,7 +148,8 @@ if (VCVERS >= 1400) {
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) {