diff options
author | Sam James <sam@gentoo.org> | 2024-11-19 13:29:33 +0000 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-11-19 13:29:33 +0000 |
commit | 57714276b93114dedb6ca068789ef9261754b59b (patch) | |
tree | 7d110377ea82fdc7a4bdc4adbd5544564255b943 /app-i18n/skkfep | |
parent | dev-util/perf: Stabilize 6.11.7 x86, #943993 (diff) | |
download | gentoo-57714276b93114dedb6ca068789ef9261754b59b.tar.gz gentoo-57714276b93114dedb6ca068789ef9261754b59b.tar.bz2 gentoo-57714276b93114dedb6ca068789ef9261754b59b.zip |
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@gentoo.org>
Diffstat (limited to 'app-i18n/skkfep')
-rw-r--r-- | app-i18n/skkfep/skkfep-0.87-r1.ebuild | 8 |
1 files 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() { |