commit: d596e1467c0496a15e1ad36f21febd15dc02cd66 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Thu Apr 24 19:40:40 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Thu Apr 24 19:41:09 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d596e146
dev-libs/onigmo: build w/ -std=gnu17 Closes: https://bugs.gentoo.org/943945 Signed-off-by: Sam James <sam <AT> gentoo.org> dev-libs/onigmo/onigmo-6.2.0-r1.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild b/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild index 66151a7a8e68..301496187f36 100644 --- a/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild +++ b/dev-libs/onigmo/onigmo-6.2.0-r1.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2022 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="Onigmo is a regular expressions library forked from Oniguruma" HOMEPAGE="https://github.com/k-takata/Onigmo" @@ -21,6 +21,9 @@ src_prepare() { } src_configure() { + # https://github.com/k-takata/Onigmo/issues/169 (bug #943945) + append-cflags -std=gnu17 + econf \ $(use_enable combination-explosion-check) \ $(use_enable crnl-as-line-terminator)
