aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorDavid Robillard <d@drobilla.net>2014-11-25 12:24:09 -0500
committerDavid Robillard <d@drobilla.net>2014-11-25 12:24:09 -0500
commitfe4d7f69e7b562a68c4257051a17ab571f85c6ed (patch)
treeff55c5c2d8db9acbc9fb5dccabf216b0642c5d9f /plugins
parent68a4dc89f5e00aa6e2780f4f96011b92961b7a80 (diff)
downloadlv2-fe4d7f69e7b562a68c4257051a17ab571f85c6ed.tar.xz
Link math library where required.
Diffstat (limited to 'plugins')
-rw-r--r--plugins/eg-amp.lv2/wscript2
-rw-r--r--plugins/eg-metro.lv2/wscript4
-rw-r--r--plugins/eg-sampler.lv2/wscript5
3 files changed, 7 insertions, 4 deletions
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