summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorKaloian Manassiev <kaloian.manassiev@mongodb.com>2014-05-15 17:47:12 -0400
committerKaloian Manassiev <kaloian.manassiev@mongodb.com>2014-05-16 10:54:03 -0400
commit9bac8024b68ef97aaa0ffaa868ee783fe793f54a (patch)
tree470b562d4b87882a9fd1eea5ea7debaf35bf4a5c /SConstruct
parentb8d9a168f7340b54e251310a1d43f5e6354e793b (diff)
downloadmongo-9bac8024b68ef97aaa0ffaa868ee783fe793f54a.tar.gz
SERVER-13961 Get rid of the DB_LEVEL_LOCKING_ENABLED macro
We will no loger build with global locking on.
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct6
1 files changed, 0 insertions, 6 deletions
diff --git a/SConstruct b/SConstruct
index 1d927b8f69e..24bccce3cea 100644
--- a/SConstruct
+++ b/SConstruct
@@ -299,9 +299,6 @@ add_option( "use-cpu-profiler",
"Link against the google-perftools profiler library",
0, False )
-add_option("mongod-concurrency-level", "Concurrency level, \"global\" or \"db\"", 1, True,
- type="choice", choices=["global", "db"])
-
add_option('build-fast-and-loose', "NEVER for production builds", 0, False)
add_option('disable-warnings-as-errors', "Don't add -Werror to compiler command line", 0, False)
@@ -474,9 +471,6 @@ if has_option('mute'):
env.Append( SHLINKCOMSTR = env["LINKCOMSTR"] )
env.Append( ARCOMSTR = "Generating library $TARGET" )
-if has_option('mongod-concurrency-level'):
- env.Append(CPPDEFINES=['MONGOD_CONCURRENCY_LEVEL=MONGOD_CONCURRENCY_LEVEL_%s' % get_option('mongod-concurrency-level').upper()])
-
libdeps.setup_environment( env )
if env['PYSYSPLATFORM'] == 'linux3':