summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2017-03-19 10:24:19 +0100
committerDavid Robillard <d@drobilla.net>2017-03-20 02:58:56 +0100
commitf46a3ec40a691a6892ad5536ca47de175a9c05b7 (patch)
treee1a4f29a2083f98daff1384fe2fab34ce28c3d48 /wscript
parentf062189c8219041fad45cfd340c367e5c4796933 (diff)
downloadingen-f46a3ec40a691a6892ad5536ca47de175a9c05b7.tar.gz
ingen-f46a3ec40a691a6892ad5536ca47de175a9c05b7.tar.bz2
ingen-f46a3ec40a691a6892ad5536ca47de175a9c05b7.zip
Cleanup: Trim boost headers and unnecessary configure checks
Diffstat (limited to 'wscript')
-rw-r--r--wscript8
1 files changed, 4 insertions, 4 deletions
diff --git a/wscript b/wscript
index cbf23a31..07d94cc3 100644
--- a/wscript
+++ b/wscript
@@ -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() {}',