- Replace precheckin_cripple_tarball.sh with a _service file - Update to 4.6.2. Changes since 4.6.1: * bug fixes in LentPitShift and Granulate classes * Makefile fixes * miscellaneous bug fixes * updated versions of RtAudio, RtMidi and ASIO SDK files Check ReleaseNotes.txt for older changes. - Add patches: * 0001-Don-t-ignore-supplied-CXXFLAGS.patch * 0002-Fix-the-library-soname.patch OBS-URL: https://build.opensuse.org/request/show/1009764 OBS-URL: https://build.opensuse.org/package/show/multimedia:libs/stk?expand=0&rev=16
27 lines
802 B
Diff
27 lines
802 B
Diff
From cd6a36955f37f91fd5f44e7695c4df799ec26c95 Mon Sep 17 00:00:00 2001
|
|
From: Christophe Giboudeaux <christophe@krop.fr>
|
|
Date: Tue, 11 Oct 2022 10:36:27 +0200
|
|
Subject: [PATCH 2/2] Fix the library soname
|
|
|
|
It shouldn't contain '.so'
|
|
---
|
|
configure.ac | 2 +-
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 31486e9..0d29ef4 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -119,7 +119,7 @@ basesharedname="libstk-\$(RELEASE)"
|
|
|
|
AC_SUBST( sharedlib, ["libstk.so"] )
|
|
AC_SUBST( sharedname, [${basesharedname}.so] )
|
|
-AC_SUBST( libflags, ["-shared -Wl,-soname,${basesharedname}.so -o $sharedname"] )
|
|
+AC_SUBST( libflags, ["-shared -Wl,-soname,${basesharedname} -o $sharedname"] )
|
|
case $host in
|
|
*-apple*)
|
|
AC_SUBST( sharedlib, ["libstk.dylib"] )
|
|
--
|
|
2.37.3
|
|
|