scons: assume boost headers are found unless explicitly not

This commit is contained in:
Dane Springmeyer 2013-06-03 12:22:29 -07:00
parent 19ce56b051
commit c00a4e6971

View file

@ -1252,12 +1252,11 @@ if not preconfigured:
conf.FindBoost(BOOST_SEARCH_PREFIXES,thread_flag)
has_boost_devel = False
has_boost_devel = True
if not env['HOST']:
if not conf.CheckHeader(header='boost/version.hpp',language='C++'):
env['MISSING_DEPS'].append('boost development headers')
else:
has_boost_devel = True
has_boost_devel = False
if has_boost_devel:
env['BOOST_LIB_VERSION_FROM_HEADER'] = conf.GetBoostLibVersion()