commit: 11966f795ca006463074a8f8f002a6564ee38bc5 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sat Jun 21 12:48:38 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sat Jun 21 12:49:28 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=11966f79
app-arch/zoo: build w/ -std=gnu17 Removed from Debian in 2017. Closes: https://bugs.gentoo.org/943903 Signed-off-by: Sam James <sam <AT> gentoo.org> app-arch/zoo/zoo-2.10-r6.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app-arch/zoo/zoo-2.10-r6.ebuild b/app-arch/zoo/zoo-2.10-r6.ebuild index 596ed3ada797..2469528f2f2a 100644 --- a/app-arch/zoo/zoo-2.10-r6.ebuild +++ b/app-arch/zoo/zoo-2.10-r6.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 toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="Manipulate archives of files in compressed form" HOMEPAGE="https://github.com/jduerstock/zoo" @@ -27,6 +27,9 @@ src_configure() { } src_compile() { + # bug #943903 + append-cflags -std=gnu17 + emake linux }
