summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorAndrew Morrow <acm@10gen.com>2013-06-03 15:49:16 -0400
committerAndrew Morrow <acm@10gen.com>2013-06-04 16:59:34 -0400
commit75095e78e03d16d08f29770c9c80ec8f34792bc0 (patch)
treef7fdd365d4fadd5b62729da31bf25a440c8cb08b /SConstruct
parent4cb7655e3da3466265ace5d6cf44c55b931f3d15 (diff)
downloadmongo-75095e78e03d16d08f29770c9c80ec8f34792bc0.tar.gz
SERVER-9410 Permit use of Interlocked operations on Windows Server 2003
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct13
1 files changed, 7 insertions, 6 deletions
diff --git a/SConstruct b/SConstruct
index c2dbed8fc52..0e21da381fb 100644
--- a/SConstruct
+++ b/SConstruct
@@ -614,11 +614,12 @@ elif "win32" == os.sys.platform:
env['DIST_ARCHIVE_SUFFIX'] = '.zip'
win_version_min_choices = {
- 'xpsp3' : ('0501', '0300'),
- 'vista' : ('0600', '0000'),
- 'ws08r2' : ('0601', '0000'),
- 'win7' : ('0601', '0000'),
- 'win8' : ('0602', '0000'),
+ 'xpsp3' : ('0501', '0300'),
+ 'ws03sp2' : ('0502', '0200'),
+ 'vista' : ('0600', '0000'),
+ 'ws08r2' : ('0601', '0000'),
+ 'win7' : ('0601', '0000'),
+ 'win8' : ('0602', '0000'),
}
add_option("win-version-min", "minimum Windows version to support", 1, False,
@@ -920,7 +921,7 @@ def doConfigure(myenv):
if windows:
win_version_min = None
default_32_bit_min = 'xpsp3'
- default_64_bit_min = 'vista'
+ default_64_bit_min = 'ws03sp2'
if has_option('win-version-min'):
win_version_min = get_option('win-version-min')
elif has_option('win2008plus'):