summaryrefslogtreecommitdiffstats
path: root/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2009-07-07 16:36:26 +0000
committerDavid Robillard <d@drobilla.net>2009-07-07 16:36:26 +0000
commit6871f333687f14af438172914d33b8423dd0c90d (patch)
tree52cc903ec27195da8817432a7f144497654bc445 /wscript
parent1077044814e4899654eb88d20e8dbe0f455dc1f3 (diff)
downloadraul-6871f333687f14af438172914d33b8423dd0c90d.tar.gz
raul-6871f333687f14af438172914d33b8423dd0c90d.tar.bz2
raul-6871f333687f14af438172914d33b8423dd0c90d.zip
Fix compilation issues.
Display dyn manifest configuration status in summary. git-svn-id: http://svn.drobilla.net/lad/trunk/raul@2160 a436a847-0d15-0410-975c-d299462d15a1
Diffstat (limited to 'wscript')
-rw-r--r--wscript6
1 files changed, 6 insertions, 0 deletions
diff --git a/wscript b/wscript
index 700f041..4d636e5 100644
--- a/wscript
+++ b/wscript
@@ -32,6 +32,12 @@ def configure(conf):
uselib_store='GLIBMM', mandatory=True)
autowaf.check_pkg(conf, 'gthread-2.0', atleast_version='2.14.0',
uselib_store='GTHREAD', mandatory=True)
+
+ # Boost headers
+ autowaf.check_header(conf, 'boost/shared_ptr.hpp', mandatory=True)
+ autowaf.check_header(conf, 'boost/weak_ptr.hpp', mandatory=True)
+ autowaf.check_header(conf, 'boost/utility.hpp', mandatory=True)
+
autowaf.print_summary(conf)
def build(bld):