Dave Plater
6f40fedec8
To subtitute lv2core (SR#129616) OBS-URL: https://build.opensuse.org/request/show/129640 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/lv2?expand=0&rev=1
22 lines
748 B
Diff
22 lines
748 B
Diff
Index: plugins/eg-amp.lv2/wscript
|
|
===================================================================
|
|
--- plugins/eg-amp.lv2/wscript.orig
|
|
+++ plugins/eg-amp.lv2/wscript
|
|
@@ -37,6 +37,8 @@ def configure(conf):
|
|
conf.env['pluginlib_EXT'] = pat[pat.rfind('.'):]
|
|
|
|
autowaf.display_msg(conf, "LV2 bundle directory", conf.env['LV2DIR'])
|
|
+
|
|
+ conf.check(features='c cprogram', lib=['m'], uselib_store='M')
|
|
print('')
|
|
|
|
def build(bld):
|
|
@@ -74,6 +76,6 @@ def build(bld):
|
|
name = 'amp',
|
|
target = '%s/amp' % bundle,
|
|
install_path = '${LV2DIR}/%s' % bundle,
|
|
- uselib = 'LV2CORE',
|
|
+ uselib = 'M LV2CORE',
|
|
includes = includes)
|
|
|