diff options
author | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-08-19 15:06:31 -0400 |
---|---|---|
committer | Mark Benvenuto <mark.benvenuto@mongodb.com> | 2014-08-20 17:43:19 -0400 |
commit | 351523db3169a6c5e2df96f83eacea31978bea3d (patch) | |
tree | 6f677de43fbcd1ee4875cb1b11b0daed0d8f2729 /SConstruct | |
parent | 09a639ccacd8ead858beb34dad32b4348cf2d030 (diff) | |
download | mongo-351523db3169a6c5e2df96f83eacea31978bea3d.tar.gz |
SERVER-8994: Boost 1.56 build system integration
Diffstat (limited to 'SConstruct')
-rw-r--r-- | SConstruct | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/SConstruct b/SConstruct index 500121d68c9..f39157b65bd 100644 --- a/SConstruct +++ b/SConstruct @@ -285,7 +285,7 @@ add_option( "use-system-tcmalloc", "use system version of tcmalloc library", 0, add_option( "use-system-pcre", "use system version of pcre library", 0, True ) # library choices -boost_choices = ['1.49', '1.55'] +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) @@ -977,7 +977,7 @@ if not windows: boostSuffix = ""; if not use_system_version_of_library("boost"): if get_option( "internal-boost") != "1.49": - boostSuffix = "-1.55.0" + boostSuffix = "-1.56.0" env.Prepend(CPPDEFINES=['BOOST_ALL_NO_LIB']) env.Append( CPPPATH=['$EXTRACPPPATH'], |