commit: 331763285ae462dd0028031f598293d22fd8aec7 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Fri May 16 09:40:26 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Fri May 16 09:40:26 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=33176328
sys-cluster/ucx: build w/ -std=gnu17 for now An upcoming release will fix this, but the patches are too large to backport. Closes: https://bugs.gentoo.org/944992 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-cluster/ucx/ucx-1.13.1.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/sys-cluster/ucx/ucx-1.13.1.ebuild b/sys-cluster/ucx/ucx-1.13.1.ebuild index 84951d1c3ce3..0a80a4093313 100644 --- a/sys-cluster/ucx/ucx-1.13.1.ebuild +++ b/sys-cluster/ucx/ucx-1.13.1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools toolchain-funcs +inherit autotools flag-o-matic toolchain-funcs MY_PV=${PV/_/-} DESCRIPTION="Unified Communication X" @@ -45,6 +45,9 @@ src_prepare() { } src_configure() { + # Can be dropped with ucx-1.19.x (bug #944992) + append-cflags -std=gnu17 + BASE_CFLAGS="" econf \ --disable-doxygen-doc \ --disable-compiler-opt \
