diff options
| author | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-05-11 16:19:27 +0000 |
|---|---|---|
| committer | Liguros - Gitlab CI/CD [develop] <gitlab@liguros.net> | 2026-05-11 16:19:27 +0000 |
| commit | 4912a64be738d6ead0cc7a8288de50714c68c0bf (patch) | |
| tree | fbce5346cff87cfba39f064f7422328ef4ccae74 /media-libs | |
| parent | 448fc515bcf8058695b0a67d165cfc29f80cc36b (diff) | |
| download | baldeagleos-repo-4912a64be738d6ead0cc7a8288de50714c68c0bf.tar.gz baldeagleos-repo-4912a64be738d6ead0cc7a8288de50714c68c0bf.tar.xz baldeagleos-repo-4912a64be738d6ead0cc7a8288de50714c68c0bf.zip | |
Adding metadata
Diffstat (limited to 'media-libs')
| -rw-r--r-- | media-libs/openjph/Manifest | 2 | ||||
| -rw-r--r-- | media-libs/openjph/openjph-0.27.2.ebuild (renamed from media-libs/openjph/openjph-0.27.0.ebuild) | 0 | ||||
| -rw-r--r-- | media-libs/waffle/files/waffle-1.8.1-glibc-2.43.patch | 55 | ||||
| -rw-r--r-- | media-libs/waffle/waffle-1.8.1.ebuild | 6 |
4 files changed, 61 insertions, 2 deletions
diff --git a/media-libs/openjph/Manifest b/media-libs/openjph/Manifest index 273b30a3790c..e72572af9430 100644 --- a/media-libs/openjph/Manifest +++ b/media-libs/openjph/Manifest @@ -1,2 +1,2 @@ -DIST openjph-0.27.0.tar.gz 483754 BLAKE2B ed2360e01082c938670b1df5ab28ed70d44f86c5ade98b9cf4a455c857f7aedc3d70bb99ba3a354a880083be1c4e78912bcb74601103594e3399e05e5e985603 SHA512 65134ddd870b275d5cab8bae704aa0781978b49e85b6b645a90e93fb6d482ee17d494a8f05e7e3dddf803532da631b898e75cb90b99b2db048c6111e84d4a1e1 DIST openjph-0.27.1.tar.gz 483965 BLAKE2B f106a3b6b096d93f53d6d06dc9b9d7a8619f69566828f6dc5eeec90657516c576fc8eb871d066b67bcfc3a521c23404b6e71b78039a8abd3dfa5f744192c42fc SHA512 16321e04f91952968e550f5c2e0b1e0686e34ef83cc82f9f2998caaf4a40a13217286662b5bf6c9147c9e9b62ffe870679730864b760833a3529f74730fed751 +DIST openjph-0.27.2.tar.gz 483981 BLAKE2B 0ae364e8253d32fc375287cafd72c484f4a5aa0de04403a69234da12e90e21257960e2888a609920edb3f38b596aae8c00bc2cad57aea460894c5f65d717fc5f SHA512 2bf9cd0a605f31d4961a7f65a11af8c04a9e263fe43909cdf34918795c7bfdebbff87a0613f6b76f1ac4ad2ef78b34363c3d850d08bb188093796986f36d0d6c diff --git a/media-libs/openjph/openjph-0.27.0.ebuild b/media-libs/openjph/openjph-0.27.2.ebuild index 815391c89df0..815391c89df0 100644 --- a/media-libs/openjph/openjph-0.27.0.ebuild +++ b/media-libs/openjph/openjph-0.27.2.ebuild diff --git a/media-libs/waffle/files/waffle-1.8.1-glibc-2.43.patch b/media-libs/waffle/files/waffle-1.8.1-glibc-2.43.patch new file mode 100644 index 000000000000..3cc89bb145e1 --- /dev/null +++ b/media-libs/waffle/files/waffle-1.8.1-glibc-2.43.patch @@ -0,0 +1,55 @@ +https://bugs.gentoo.org/969473 +https://gitlab.freedesktop.org/mesa/waffle/-/merge_requests/158 + +From 6b3c46483844faba4dfe7dd90dc2b0cd06e67158 Mon Sep 17 00:00:00 2001 +From: Khem Raj <raj.khem@gmail.com> +Date: Mon, 10 Nov 2025 19:20:22 -0800 +Subject: [PATCH] c11/threads: fix build on c23 + +C23/glibc is now including once_init in stdlib.h + +https://patchwork.sourceware.org/project/glibc/patch/78061085-f04a-0c45-107b-5a8a15521083@redhat.com/#213088 + +Conditionally check if glibc already provided c23 definition via stdlib.h + +Signed-off-by: Khem Raj <raj.khem@gmail.com> +--- + third_party/threads/threads.h | 3 ++- + third_party/threads/threads_posix.c | 3 ++- + 2 files changed, 4 insertions(+), 2 deletions(-) + +diff --git a/third_party/threads/threads.h b/third_party/threads/threads.h +index b4db50c..cdc7bea 100644 +--- a/third_party/threads/threads.h ++++ b/third_party/threads/threads.h +@@ -102,8 +102,9 @@ typedef pthread_cond_t cnd_t; + typedef pthread_t thrd_t; + typedef pthread_key_t tss_t; + typedef pthread_mutex_t mtx_t; ++#ifndef __once_flag_defined + typedef pthread_once_t once_flag; +- ++#endif + #else + #error Not supported on this platform. + #endif +diff --git a/third_party/threads/threads_posix.c b/third_party/threads/threads_posix.c +index bc50825..d93013b 100644 +--- a/third_party/threads/threads_posix.c ++++ b/third_party/threads/threads_posix.c +@@ -75,11 +75,12 @@ static void *impl_thrd_routine(void *p) + + /*--------------- 7.25.2 Initialization functions ---------------*/ + // 7.25.2.1 ++#ifndef __once_flag_defined + void call_once(once_flag *flag, void (*func)(void)) + { + pthread_once(flag, func); + } +- ++#endif + + /*------------- 7.25.3 Condition variable functions -------------*/ + // 7.25.3.1 +-- +GitLab diff --git a/media-libs/waffle/waffle-1.8.1.ebuild b/media-libs/waffle/waffle-1.8.1.ebuild index 046bb04eaf51..73136c59679d 100644 --- a/media-libs/waffle/waffle-1.8.1.ebuild +++ b/media-libs/waffle/waffle-1.8.1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -46,6 +46,10 @@ MULTILIB_CHOST_TOOLS=( /usr/bin/wflinfo$(get_exeext) ) +PATCHES=( + "${FILESDIR}"/${PN}-1.8.1-glibc-2.43.patch +) + multilib_src_configure() { local emesonargs=( $(meson_feature X glx) |
