summaryrefslogtreecommitdiff
path: root/libs
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-12-23 18:44:33 -0500
committerDavid Robillard <d@drobilla.net>2014-12-24 13:00:32 -0500
commit2e7cfe081f4148157bd06160f57390e0d43636f9 (patch)
treec8c959519f67d4f7e1a4414578ca16f4bd20acfe /libs
parent5b28e0bc6fa036464a3f4cf13300819f805d39d4 (diff)
Add --no-lrdf configure option.
Diffstat (limited to 'libs')
-rw-r--r--libs/ardour/wscript5
1 files changed, 3 insertions, 2 deletions
diff --git a/libs/ardour/wscript b/libs/ardour/wscript
index 2b4cf45310..76d39bd0c3 100644
--- a/libs/ardour/wscript
+++ b/libs/ardour/wscript
@@ -254,8 +254,9 @@ def configure(conf):
atleast_version='0.4.0', mandatory=False)
autowaf.check_pkg(conf, 'libxml-2.0', uselib_store='XML')
if Options.options.dist_target != 'mingw':
- autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
- atleast_version='0.4.0')
+ if not Options.options.no_lrdf:
+ autowaf.check_pkg(conf, 'lrdf', uselib_store='LRDF',
+ atleast_version='0.4.0')
autowaf.check_pkg(conf, 'aubio', uselib_store='AUBIO',
atleast_version='0.3.2')
autowaf.check_pkg(conf, 'samplerate', uselib_store='SAMPLERATE',