+ no_skip[] requires boost >= 1.43
This commit is contained in:
parent
ff9cca417b
commit
8b75f8bffe
1 changed files with 4 additions and 4 deletions
|
@ -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 )
|
||||
|
||||
|
|
Loading…
Reference in a new issue