From 8b75f8bffe65eb98c727a1a749827f448afa27b5 Mon Sep 17 00:00:00 2001 From: Artem Pavlenko Date: Mon, 21 Jun 2010 09:40:54 +0000 Subject: [PATCH] + no_skip[] requires boost >= 1.43 --- SConstruct | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/SConstruct b/SConstruct index e009d2542..f0ed23b6b 100644 --- a/SConstruct +++ b/SConstruct @@ -852,11 +852,11 @@ if not preconfigured: BOOST_LIBSHEADERS.append(['thread', 'boost/thread/mutex.hpp', True]) # if the user is not setting custom boost configuration - # enforce boost version greater than or equal to 1.41 - if not conf.CheckBoost('1.41'): - color_print(1,'Boost version 1.41 or greater is requred') + # enforce boost version greater than or equal to 1.43 + if not conf.CheckBoost('1.43'): + color_print(1,'Boost version 1.43 or greater is requred') if not env['BOOST_VERSION']: - env['MISSING_DEPS'].append('boost version >=1.41') + env['MISSING_DEPS'].append('boost version >=1.43') else: color_print(4,'Found boost lib version... %s' % boost_lib_version_from_header )