diff options
author | Michal Rostecki <vadorovsky@protonmail.com> | 2024-02-01 22:30:51 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-02-17 06:38:28 +0000 |
commit | 747325624803925817185a5d3253e17f1c09c2a6 (patch) | |
tree | 821ca81252fac41a26158f099a01e73323fd25b7 /media-libs/alsa-lib/files | |
parent | sys-apps/lsd: Stabilize 1.0.0 ppc64, #924581 (diff) | |
download | gentoo-747325624803925817185a5d3253e17f1c09c2a6.tar.gz gentoo-747325624803925817185a5d3253e17f1c09c2a6.tar.bz2 gentoo-747325624803925817185a5d3253e17f1c09c2a6.zip |
media-libs/alsa-lib: Bump alsa-lib to 1.2.11
Changes:
- Version bump to 1.2.11
- Add an upstream patch which fixes the build with lld
- alsa-project/alsa-lib@2a736a0
- The previous lld-related patches are not needed anymore
Signed-off-by: Michal Rostecki <vadorovsky@protonmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-libs/alsa-lib/files')
-rw-r--r-- | media-libs/alsa-lib/files/alsa-lib-1.2.11-topology-correct-version-script-path.patch | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/media-libs/alsa-lib/files/alsa-lib-1.2.11-topology-correct-version-script-path.patch b/media-libs/alsa-lib/files/alsa-lib-1.2.11-topology-correct-version-script-path.patch new file mode 100644 index 000000000000..d5442b29c8b5 --- /dev/null +++ b/media-libs/alsa-lib/files/alsa-lib-1.2.11-topology-correct-version-script-path.patch @@ -0,0 +1,32 @@ +From 2a736a0d2543f206fd2653aaae8a08a4c42eb917 Mon Sep 17 00:00:00 2001 +From: Jan Palus <jpalus@fastmail.com> +Date: Tue, 30 Jan 2024 14:24:25 +0100 +Subject: [PATCH] topology: correct version script path + +contrary to libasound, version script for libatopology is a regular +source file. while it's often the case that $(builddir) and $(srcdir) +point to the same directory, they don't always have to. therefore path +needs to point explicitly to $(srcdir) for Versions script in topology + +Closes: https://github.com/alsa-project/alsa-lib/pull/383 +Fixes: GH-382 +Fixes: dc7da761f3a2 ("topology: separate Versions linker script") +Signed-off-by: Jan Palus <jpalus@fastmail.com> +Signed-off-by: Jaroslav Kysela <perex@perex.cz> +--- + src/topology/Makefile.am | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/topology/Makefile.am b/src/topology/Makefile.am +index 04299588..e0b78373 100644 +--- a/src/topology/Makefile.am ++++ b/src/topology/Makefile.am +@@ -2,7 +2,7 @@ EXTRA_DIST = Versions + COMPATNUM=@LIBTOOL_VERSION_INFO@ + + if VERSIONED_SYMBOLS +-VSYMS = -Wl,--version-script=Versions ++VSYMS = -Wl,--version-script=$(srcdir)/Versions + else + VSYMS = + endif |