diff options
author | David Robillard <d@drobilla.net> | 2013-02-03 19:57:38 +0000 |
---|---|---|
committer | David Robillard <d@drobilla.net> | 2013-02-03 19:57:38 +0000 |
commit | beeb97d9ed2fc69dbd00f866f9656d520340950f (patch) | |
tree | 45a56590a5d60af74e0465a0107214bcb4e2b8b7 /wscript | |
parent | 2ee2037578f6e3f223aa260bf4dfe9ce67bae396 (diff) | |
download | patchage-beeb97d9ed2fc69dbd00f866f9656d520340950f.tar.gz patchage-beeb97d9ed2fc69dbd00f866f9656d520340950f.tar.bz2 patchage-beeb97d9ed2fc69dbd00f866f9656d520340950f.zip |
Check for required boost headers.
git-svn-id: http://svn.drobilla.net/lad/trunk/patchage@5041 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r-- | wscript | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -94,7 +94,9 @@ def configure(conf): autowaf.define(conf, 'PATCHAGE_BINLOC', 1) # Boost headers + autowaf.check_header(conf, 'cxx', 'boost/format.hpp') autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp') + autowaf.check_header(conf, 'cxx', 'boost/utility.hpp') autowaf.check_header(conf, 'cxx', 'boost/weak_ptr.hpp') conf.env.PATCHAGE_VERSION = PATCHAGE_VERSION |