commit: a5b31a181b15422246e0197e0a828157b52b7a99 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Nov 19 13:35:06 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Nov 19 13:35:06 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a5b31a18
app-admin/radmind: build w/ -std=gnu89 Relies on lots of K&R decls. Closes: https://bugs.gentoo.org/880375 Closes: https://bugs.gentoo.org/881967 Signed-off-by: Sam James <sam <AT> gentoo.org> app-admin/radmind/radmind-1.15.4-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/app-admin/radmind/radmind-1.15.4-r1.ebuild b/app-admin/radmind/radmind-1.15.4-r1.ebuild index 99ad31c192c5..a767b962fde3 100644 --- a/app-admin/radmind/radmind-1.15.4-r1.ebuild +++ b/app-admin/radmind/radmind-1.15.4-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 -inherit autotools +inherit autotools flag-o-matic DESCRIPTION="Command-line tools and server to remotely administer multiple Unix filesystems" HOMEPAGE="https://github.com/Radmind https://sourceforge.net/projects/radmind/" @@ -43,6 +43,9 @@ src_prepare() { } src_configure() { + # bug #880375 + append-flags -std=gnu89 + local myconf=( $(use_enable pam) $(use_enable zlib)
