From 619af3e3c7b00cee67235c9485f963e93822601f Mon Sep 17 00:00:00 2001 From: Dane Springmeyer Date: Thu, 16 Aug 2012 14:29:42 -0700 Subject: [PATCH] scons: remove boost_python library check - there is not way to include multiple headers and therefore no way to safely include both boost_python and -lpython libs - refs #1394 --- SConstruct | 5 ----- 1 file changed, 5 deletions(-) diff --git a/SConstruct b/SConstruct index a9cd27b14..113dbde39 100644 --- a/SConstruct +++ b/SConstruct @@ -1388,11 +1388,6 @@ if not preconfigured: color_print(1,'Could not find required header files for boost python') env['MISSING_DEPS'].append('boost python') - if not conf.CheckLibWithHeader(libs=[env['BOOST_PYTHON_LIB'],'python%s' % env['PYTHON_VERSION']], header='boost/python/detail/config.hpp', language='C++'): - color_print(1, 'Could not find library "%s" for boost python bindings' % env['BOOST_PYTHON_LIB']) - # failing on launchpad, so let's make it a warning for now - #env['MISSING_DEPS'].append('boost python') - if env['CAIRO']: if conf.CheckPKGConfig('0.15.0') and conf.CheckPKG('pycairo'): env['HAS_PYCAIRO'] = True