diff options
author | Sam James <sam@gentoo.org> | 2022-07-31 04:36:19 +0100 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2022-07-31 04:39:33 +0100 |
commit | c185146b40b6665533f7235a5d88dee258dc05fd (patch) | |
tree | c1ed52fd21cf4ca0303351b05b14e9144a2980a1 /media-sound/pulseaudio/files/pulseaudio-13.0-clang.patch | |
parent | media-libs/libpulse: drop 16.0-r1 (diff) | |
download | gentoo-c185146b40b6665533f7235a5d88dee258dc05fd.tar.gz gentoo-c185146b40b6665533f7235a5d88dee258dc05fd.tar.bz2 gentoo-c185146b40b6665533f7235a5d88dee258dc05fd.zip |
media-sound/pulseaudio: drop 13.0-r1, 15.0-r2, 15.0-r3
This should make things a bit less confusing when
looking at packages.gentoo.org, 'equery u', etc
wrt libpulse split.
media-sound/pulseaudio is now just a meta.
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'media-sound/pulseaudio/files/pulseaudio-13.0-clang.patch')
-rw-r--r-- | media-sound/pulseaudio/files/pulseaudio-13.0-clang.patch | 25 |
1 files changed, 0 insertions, 25 deletions
diff --git a/media-sound/pulseaudio/files/pulseaudio-13.0-clang.patch b/media-sound/pulseaudio/files/pulseaudio-13.0-clang.patch deleted file mode 100644 index d7b81de0313e..000000000000 --- a/media-sound/pulseaudio/files/pulseaudio-13.0-clang.patch +++ /dev/null @@ -1,25 +0,0 @@ -From e4450d8b586103ec1414e2d6245ff34a9096d97a Mon Sep 17 00:00:00 2001 -From: Peter Levine <plevine457@gmail.com> -Date: Thu, 26 Sep 2019 07:24:40 +0000 -Subject: [PATCH] atomic: Explicitly cast void* to unsigned long - ---- - src/pulsecore/atomic.h | 2 +- - 1 file changed, 1 insertion(+), 1 deletion(-) - -diff --git a/src/pulsecore/atomic.h b/src/pulsecore/atomic.h -index a82ca83c5..e5c140109 100644 ---- a/src/pulsecore/atomic.h -+++ b/src/pulsecore/atomic.h -@@ -117,7 +117,7 @@ static inline void* pa_atomic_ptr_load(const pa_atomic_ptr_t *a) { - } - - static inline void pa_atomic_ptr_store(pa_atomic_ptr_t *a, void* p) { -- __atomic_store_n(&a->value, p, __ATOMIC_SEQ_CST); -+ __atomic_store_n(&a->value, (unsigned long) p, __ATOMIC_SEQ_CST); - } - - #else --- -GitLab - |