commit: a9a9f1e7242468919f8168c97a892c1a3d706277 Author: Ulrich Müller <ulm <AT> gentoo <DOT> org> AuthorDate: Thu Nov 21 09:11:28 2024 +0000 Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org> CommitDate: Thu Nov 21 09:12:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a9a9f1e7
app-emulation/xtrs: Fix build with GCC 15 Closes: https://bugs.gentoo.org/944243 Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org> app-emulation/xtrs/xtrs-4.9d-r6.ebuild | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/app-emulation/xtrs/xtrs-4.9d-r6.ebuild b/app-emulation/xtrs/xtrs-4.9d-r6.ebuild index 0ed2d6293064..cafcfe2b48da 100644 --- a/app-emulation/xtrs/xtrs-4.9d-r6.ebuild +++ b/app-emulation/xtrs/xtrs-4.9d-r6.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -41,6 +41,7 @@ src_prepare() { } src_compile() { + append-flags -std=gnu17 case $(tc-endian) in little) ;; big) append-flags -Dbig_endian ;;
