commit: 0cad6f5dea560d884ef2e2270c2db665eebc347b Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Apr 24 23:41:42 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Apr 24 23:41:42 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=0cad6f5d
x11-misc/macopix: build w/ -std=gnu17 Closes: https://bugs.gentoo.org/943977 Signed-off-by: Sam James <sam <AT> gentoo.org> x11-misc/macopix/macopix-3.4.0-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/x11-misc/macopix/macopix-3.4.0-r1.ebuild b/x11-misc/macopix/macopix-3.4.0-r1.ebuild index f04b437de99a..1935164a5e41 100644 --- a/x11-misc/macopix/macopix-3.4.0-r1.ebuild +++ b/x11-misc/macopix/macopix-3.4.0-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="MaCoPiX (Mascot Constructive Pilot for X) is a desktop mascot application" HOMEPAGE="https://rosegray.sakura.ne.jp/macopix/index-e.html https://github.com/chimari/MaCoPiX" @@ -65,6 +65,9 @@ src_prepare() { } src_configure() { + # bug #943977 + append-cflags -std=gnu17 + econf \ $(use_with gnutls) }
