summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2016-12-04 18:26:30 -0500
committerDavid Robillard <d@drobilla.net>2016-12-04 18:26:30 -0500
commit9a848d5ba66b080b8d8c324e3c9a6917a5c36751 (patch)
tree473e264448379ee8fb1bbea5ed3e217d399a7e0e
parent14381919388a2be378805a14e22d0bb229b934f7 (diff)
Fix configuration
-rw-r--r--libs/evoral/wscript3
1 files changed, 2 insertions, 1 deletions
diff --git a/libs/evoral/wscript b/libs/evoral/wscript
index 84d822a4bd..794193aac5 100644
--- a/libs/evoral/wscript
+++ b/libs/evoral/wscript
@@ -43,7 +43,8 @@ def configure(conf):
autowaf.check_pkg(conf, 'glib-2.0', uselib_store='GLIB', atleast_version='2.2')
autowaf.check_pkg(conf, 'glibmm-2.4', uselib_store='GLIBMM', atleast_version='2.14.0')
autowaf.check_pkg(conf, 'gthread-2.0', uselib_store='GTHREAD', atleast_version='2.14.0')
- autowaf.check_pkg(conf, 'libpbd-4', uselib_store='LIBPBD', atleast_version='4.0.0', mandatory=True)
+ if not autowaf.is_child():
+ autowaf.check_pkg(conf, 'libpbd-4', uselib_store='LIBPBD', atleast_version='4.0.0', mandatory=True)
# Boost headers
autowaf.check_header(conf, 'cxx', 'boost/shared_ptr.hpp')