From fe4d7f69e7b562a68c4257051a17ab571f85c6ed Mon Sep 17 00:00:00 2001 From: David Robillard Date: Tue, 25 Nov 2014 12:24:09 -0500 Subject: Link math library where required. --- plugins/eg-amp.lv2/wscript | 2 +- plugins/eg-metro.lv2/wscript | 4 +++- plugins/eg-sampler.lv2/wscript | 5 +++-- 3 files changed, 7 insertions(+), 4 deletions(-) (limited to 'plugins') diff --git a/plugins/eg-amp.lv2/wscript b/plugins/eg-amp.lv2/wscript index d4295ff..e068a60 100644 --- a/plugins/eg-amp.lv2/wscript +++ b/plugins/eg-amp.lv2/wscript @@ -23,7 +23,7 @@ def configure(conf): if not autowaf.is_child(): autowaf.check_pkg(conf, 'lv2', uselib_store='LV2') - conf.check(features='c cprogram', lib='m', uselib_store='M', mandatory=False) + conf.check(features='c cshlib', lib='m', uselib_store='M', mandatory=False) autowaf.display_msg(conf, 'LV2 bundle directory', conf.env.LV2DIR) print('') diff --git a/plugins/eg-metro.lv2/wscript b/plugins/eg-metro.lv2/wscript index 40642b6..2a3731c 100644 --- a/plugins/eg-metro.lv2/wscript +++ b/plugins/eg-metro.lv2/wscript @@ -23,6 +23,8 @@ def configure(conf): if not autowaf.is_child(): autowaf.check_pkg(conf, 'lv2', atleast_version='0.2.0', uselib_store='LV2') + conf.check(features='c cshlib', lib='m', uselib_store='M', mandatory=False) + autowaf.display_msg(conf, 'LV2 bundle directory', conf.env.LV2DIR) print('') @@ -58,7 +60,7 @@ def build(bld): name = 'metro', target = '%s/metro' % bundle, install_path = '${LV2DIR}/%s' % bundle, - use = 'LV2', + use = ['M', 'LV2'], includes = includes) obj.env.cshlib_PATTERN = module_pat diff --git a/plugins/eg-sampler.lv2/wscript b/plugins/eg-sampler.lv2/wscript index 732c904..9815920 100644 --- a/plugins/eg-sampler.lv2/wscript +++ b/plugins/eg-sampler.lv2/wscript @@ -27,6 +27,7 @@ def configure(conf): 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(features='c cshlib', lib='m', uselib_store='M', mandatory=False) autowaf.display_msg(conf, 'LV2 bundle directory', conf.env.LV2DIR) print('') @@ -64,7 +65,7 @@ def build(bld): name = 'sampler', target = '%s/sampler' % bundle, install_path = '${LV2DIR}/%s' % bundle, - use = 'SNDFILE LV2', + use = ['M', 'SNDFILE', 'LV2'], includes = includes) obj.env.cshlib_PATTERN = module_pat @@ -75,6 +76,6 @@ def build(bld): name = 'sampler_ui', target = '%s/sampler_ui' % bundle, install_path = '${LV2DIR}/%s' % bundle, - use = 'GTK2 LV2', + use = ['GTK2', 'LV2'], includes = includes) obj.env.cshlib_PATTERN = module_pat -- cgit v1.2.1