summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2015-01-09 20:07:42 +0000
committerDavid Robillard <d@drobilla.net>2015-01-09 20:07:42 +0000
commit68a44c71dfef5dc1a5adb35e78be4bba662e7715 (patch)
treeb6fb7e631bb905208009ccb2b4b7b2206a3b62b1 /wscript
parent871c2d8df87571a9fb3edbce436adc7a41613cbc (diff)
downloadingen-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
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/wscript b/wscript
index 6775d59c..c1f7c44a 100644
--- a/wscript
+++ b/wscript
@@ -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',