+ no_skip[] requires boost >= 1.43

This commit is contained in:
Artem Pavlenko 2010-06-21 09:40:54 +00:00
parent ff9cca417b
commit 8b75f8bffe

View file

@ -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 )