ports/audio/lilv/patches/patch-wscript

15 lines
586 B
Text
Raw Normal View History

2023-08-16 22:26:55 +00:00
set proper shared library version
Index: wscript
--- wscript.orig
+++ wscript
2023-08-18 18:38:43 +00:00
@@ -357,7 +357,7 @@ def build(bld):
includes = ['.', 'include', './src'],
2023-08-16 22:26:55 +00:00
name = 'liblilv',
target = 'lilv-%s' % LILV_MAJOR_VERSION,
- vnum = LILV_VERSION,
+ vnum = os.environ['liblilv_0_ltversion'],
install_path = '${LIBDIR}',
2023-08-18 18:38:43 +00:00
defines = ['LILV_INTERNAL', 'ZIX_STATIC'],
2023-08-16 22:26:55 +00:00
cflags = libflags,