summaryrefslogtreecommitdiff
path: root/SConstruct
diff options
context:
space:
mode:
authorGeert Bosch <geert@mongodb.com>2016-04-22 14:42:28 -0400
committerGeert Bosch <geert@mongodb.com>2016-04-22 14:58:59 -0400
commit8e13345122986b242811ebee1c0908a4fc01640c (patch)
tree6c0121f0f01e0cf827d3204da4fa912daf726ec3 /SConstruct
parentdea2cdd594648d2409bc05f620f7854971d20470 (diff)
downloadmongo-8e13345122986b242811ebee1c0908a4fc01640c.tar.gz
SERVER-1393: Include decimal support under control of server parameter
Diffstat (limited to 'SConstruct')
-rw-r--r--SConstruct11
1 files changed, 0 insertions, 11 deletions
diff --git a/SConstruct b/SConstruct
index dfd70fbc517..a5e5e3f4092 100644
--- a/SConstruct
+++ b/SConstruct
@@ -444,14 +444,6 @@ add_option('cache-dir',
help='Specify the directory to use for caching objects if --cache is in use',
)
-add_option("experimental-decimal-support",
- choices=['on', 'off'],
- default='off',
- const='on',
- help="Enable experimental decimal128 type support",
- nargs='?',
-)
-
add_option("cxx-std",
choices=["11", "14"],
default="11",
@@ -1511,9 +1503,6 @@ if get_option('wiredtiger') == 'on':
wiredtiger = True
env.SetConfigHeaderDefine("MONGO_CONFIG_WIREDTIGER_ENABLED")
-if get_option('experimental-decimal-support') == 'on':
- env.SetConfigHeaderDefine("MONGO_CONFIG_EXPERIMENTAL_DECIMAL_SUPPORT")
-
icuEnabled = False
if get_option('icu') == 'on':
icuEnabled = True