diff options
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -50,7 +50,7 @@ def options(opt): def configure(conf): autowaf.display_header('Ingen Configuration') - conf.line_just = 44 + conf.line_just = 45 conf.load('compiler_cxx') conf.load('lv2') if not Options.options.no_python: @@ -60,9 +60,9 @@ def configure(conf): autowaf.set_cxx11_mode(conf) conf.check_cxx(header_name='boost/format.hpp') - conf.check_cxx(header_name='boost/shared_ptr.hpp') - conf.check_cxx(header_name='boost/utility.hpp') - conf.check_cxx(header_name='boost/weak_ptr.hpp') + conf.check_cxx(header_name='boost/intrusive/slist.hpp') + conf.check_cxx(header_name='boost/intrusive_ptr.hpp') + conf.check_cxx(header_name='boost/optional.hpp') conf.check_cxx(msg='Checking for thread_local keyword', mandatory=False, fragment='thread_local int i = 0; int main() {}', |