diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-08-22 13:42:21 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-08-22 14:09:10 -0400 |
commit | 6792a5035e18f23ebb4d2eb958a84953fcdb9ee1 (patch) | |
tree | 65e4f43c788d7a7870c1c8486e390e6ee68b6b33 /SConstruct | |
parent | f7d36a2f36f0239806b173f02f2ce8c5d4c453df (diff) | |
download | mongo-6792a5035e18f23ebb4d2eb958a84953fcdb9ee1.tar.gz |
SERVER-8994: Make Boost 1.56 default
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/SConstruct b/SConstruct index c9625e171a7..e364ecf16a5 100644 --- a/SConstruct +++ b/SConstruct @@ -287,7 +287,7 @@ add_option( "use-system-pcre", "use system version of pcre library", 0, True ) # library choices boost_choices = ['1.49', '1.56'] add_option( "internal-boost", "Specify internal boost version to use", 1, True, - type='choice', default=boost_choices[0], choices=boost_choices) + type='choice', default=boost_choices[1], choices=boost_choices) add_option( "use-system-boost", "use system version of boost libraries", 0, True ) |