summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2013-02-03 19:57:38 +0000
committerDavid Robillard <d@drobilla.net>2013-02-03 19:57:38 +0000
commitbeeb97d9ed2fc69dbd00f866f9656d520340950f (patch)
tree45a56590a5d60af74e0465a0107214bcb4e2b8b7
parent2ee2037578f6e3f223aa260bf4dfe9ce67bae396 (diff)
downloadpatchage-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
-rw-r--r--wscript2
1 files changed, 2 insertions, 0 deletions
diff --git a/wscript b/wscript
index 8764a20..0973249 100644
--- a/wscript
+++ b/wscript
@@ -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