media-video/pipewire: fix spa header

Closes: https://bugs.gentoo.org/838427
Signed-off-by: Sam James <sam@gentoo.org>
This commit is contained in:
Sam James
2022-04-15 08:58:31 +01:00
parent c4ef56c6b9
commit 8f1fed6f96
2 changed files with 40 additions and 0 deletions

View File

@@ -0,0 +1,39 @@
https://gitlab.freedesktop.org/pipewire/pipewire/-/commit/d3ea3142e1a4de206e616bc18f63a529e6b4986a.patch
https://bugs.gentoo.org/838427
From: psykose <alice@ayaya.dev>
Date: Wed, 13 Apr 2022 21:57:49 +0000
Subject: [PATCH] spa: fix c90 header include
placing declarations after code is invalid under ISO c90
Fixes !1211
--- a/spa/include/spa/utils/string.h
+++ b/spa/include/spa/utils/string.h
@@ -276,10 +276,11 @@ static inline int spa_scnprintf(char *buffer, size_t size, const char *format, .
static inline float spa_strtof(const char *str, char **endptr)
{
static locale_t locale = NULL;
+ locale_t prev;
float v;
if (SPA_UNLIKELY(locale == NULL))
locale = newlocale(LC_ALL_MASK, "C", NULL);
- locale_t prev = uselocale(locale);
+ prev = uselocale(locale);
v = strtof(str, endptr);
uselocale(prev);
return v;
@@ -319,10 +320,11 @@ static inline bool spa_atof(const char *str, float *val)
static inline double spa_strtod(const char *str, char **endptr)
{
static locale_t locale = NULL;
+ locale_t prev;
double v;
if (SPA_UNLIKELY(locale == NULL))
locale = newlocale(LC_ALL_MASK, "C", NULL);
- locale_t prev = uselocale(locale);
+ prev = uselocale(locale);
v = strtod(str, endptr);
uselocale(prev);
return v;
GitLab

View File

@@ -124,6 +124,7 @@ DOCS=( {README,INSTALL}.md NEWS )
PATCHES=(
"${FILESDIR}"/${PN}-0.3.25-enable-failed-mlock-warning.patch
"${FILESDIR}"/${P}-fix-spa-header.patch
)
# limitsdfile related code taken from =sys-auth/realtime-base-0.1