commit: 57714276b93114dedb6ca068789ef9261754b59b Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Tue Nov 19 13:29:33 2024 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Tue Nov 19 13:29:33 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=57714276
app-i18n/skkfep: use -std=gnu89 The change for bug #729276 should've done this rather than passing -Wno-* but didn't. Fix that. Bug: https://bugs.gentoo.org/729276 Closes: https://bugs.gentoo.org/918650 Signed-off-by: Sam James <sam <AT> gentoo.org> app-i18n/skkfep/skkfep-0.87-r1.ebuild | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/app-i18n/skkfep/skkfep-0.87-r1.ebuild b/app-i18n/skkfep/skkfep-0.87-r1.ebuild index c852c315a657..03e7059cb954 100644 --- a/app-i18n/skkfep/skkfep-0.87-r1.ebuild +++ b/app-i18n/skkfep/skkfep-0.87-r1.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="7" @@ -33,11 +33,9 @@ src_prepare() { sed -i "/SYSTEM_DIC_NAME/a#define SYSTEM_DIC_NAME \"${EPREFIX}/usr/share/skk/SKK-JISYO.L\"" config.h default + # written in K&R C - append-flags \ - -Wno-implicit-function-declaration \ - -Wno-implicit-int \ - -Wno-return-type + append-flags -std=gnu89 } src_compile() {
