aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/eg-sampler.lv2/wscript
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2019-10-17 13:27:39 +0200
committerDavid Robillard <d@drobilla.net>2019-10-17 13:27:39 +0200
commitee5cfcfaf9b7dd66c6eed72c538c8fbe599711c4 (patch)
tree96a372946a1a8fbeb4efba2c5b027ab6f1010695 /plugins/eg-sampler.lv2/wscript
parent18a9aeff6fe1f502dfec0cbb5b1a797df7de3cf0 (diff)
downloadlv2-ee5cfcfaf9b7dd66c6eed72c538c8fbe599711c4.tar.xz
Update autowaf
Diffstat (limited to 'plugins/eg-sampler.lv2/wscript')
-rw-r--r--plugins/eg-sampler.lv2/wscript8
1 files changed, 3 insertions, 5 deletions
diff --git a/plugins/eg-sampler.lv2/wscript b/plugins/eg-sampler.lv2/wscript
index 7e33d68..1ff4bbd 100644
--- a/plugins/eg-sampler.lv2/wscript
+++ b/plugins/eg-sampler.lv2/wscript
@@ -20,11 +20,9 @@ def configure(conf):
conf.load('lv2', cache=True)
conf.load('autowaf', cache=True)
- autowaf.check_pkg(conf, 'lv2', atleast_version='1.2.1', uselib_store='LV2')
- autowaf.check_pkg(conf, 'sndfile', uselib_store='SNDFILE',
- atleast_version='1.0.0', mandatory=True)
- autowaf.check_pkg(conf, 'gtk+-2.0', uselib_store='GTK2',
- atleast_version='2.18.0', mandatory=False)
+ conf.check_pkg('lv2 >= 1.2.1', uselib_store='LV2')
+ conf.check_pkg('sndfile >= 1.0.0', uselib_store='SNDFILE')
+ conf.check_pkg('gtk+-2.0 >= 2.18.0', uselib_store='GTK2', mandatory=False)
conf.check(features='c cshlib', lib='m', uselib_store='M', mandatory=False)
def build(bld):