diff options
author | David Robillard <d@drobilla.net> | 2015-01-09 20:07:42 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2015-01-09 20:07:42 +0000 |
commit | 68a44c71dfef5dc1a5adb35e78be4bba662e7715 (patch) | |
tree | b6fb7e631bb905208009ccb2b4b7b2206a3b62b1 | |
parent | 871c2d8df87571a9fb3edbce436adc7a41613cbc (diff) | |
download | ingen-68a44c71dfef5dc1a5adb35e78be4bba662e7715.tar.gz ingen-68a44c71dfef5dc1a5adb35e78be4bba662e7715.tar.bz2 ingen-68a44c71dfef5dc1a5adb35e78be4bba662e7715.zip |
Don't use pointless autowaf.check_header wrapper.
git-svn-id: http://svn.drobilla.net/lad/trunk/ingen@5506 a436a847-0d15-0410-975c-d299462d15a1
-rw-r--r-- | wscript | 8 |
1 files changed, 4 insertions, 4 deletions
@@ -46,10 +46,10 @@ def configure(conf): conf.check_cxx(cxxflags=["-std=c++0x"]) conf.env.append_unique('CXXFLAGS', ['-std=c++0x']) - autowaf.check_header(conf, 'cxx', 'boost/format.hpp') - autowaf.check_header(conf, 'cxx', 'boost/intrusive/list.hpp') - autowaf.check_header(conf, 'cxx', 'boost/optional.hpp') - autowaf.check_header(conf, 'cxx', 'boost/utility.hpp') + 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_python_version((2,4,0), mandatory=False) autowaf.check_pkg(conf, 'lv2', uselib_store='LV2', |