From ee5cfcfaf9b7dd66c6eed72c538c8fbe599711c4 Mon Sep 17 00:00:00 2001 From: David Robillard Date: Thu, 17 Oct 2019 13:27:39 +0200 Subject: Update autowaf --- plugins/eg-sampler.lv2/wscript | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) (limited to 'plugins/eg-sampler.lv2') 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): -- cgit v1.2.1