commit: 87ae2631cbcf99f2fde4cd845306a4d2bf7f0d06 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Feb 5 04:05:21 2026 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Feb 5 04:08:43 2026 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=87ae2631
sys-fabric/mstflint: pass -std=gnu17 as a workaround for GCC 15 I think this may be droppable on the next release. Closes: https://bugs.gentoo.org/945320 Signed-off-by: Sam James <sam <AT> gentoo.org> sys-fabric/mstflint/mstflint-4.30.0_p1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/sys-fabric/mstflint/mstflint-4.30.0_p1.ebuild b/sys-fabric/mstflint/mstflint-4.30.0_p1.ebuild index 4d40051792d7..cdeeb8e1bc46 100644 --- a/sys-fabric/mstflint/mstflint-4.30.0_p1.ebuild +++ b/sys-fabric/mstflint/mstflint-4.30.0_p1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2025 Gentoo Authors +# Copyright 1999-2026 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools +inherit autotools flag-o-matic MY_PV="${PV/_p/-}" EGIT_COMMIT="37e382f8960a0cdf639dc9c55314a9b8d0733ead" @@ -58,6 +58,9 @@ src_prepare() { } src_configure() { + # bug #945320 + append-cflags -std=gnu17 + econf $(use_enable inband) \ $(use_enable ssl openssl) \ $(use adb-generic-tools && printf -- '--enable-adb-generic-tools')
