commit: c22ae5af244d8888e59188c217a295cf9c4b8824 Author: Sam James <sam <AT> gentoo <DOT> org> AuthorDate: Sun Feb 16 12:51:46 2025 +0000 Commit: Sam James <sam <AT> gentoo <DOT> org> CommitDate: Sun Feb 16 12:51:46 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=c22ae5af
app-benchmarks/siege: build w/ -std=gnu17 We're still carrying a C99 patch, so. Closes: https://bugs.gentoo.org/943908 Signed-off-by: Sam James <sam <AT> gentoo.org> app-benchmarks/siege/siege-4.1.7.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/app-benchmarks/siege/siege-4.1.7.ebuild b/app-benchmarks/siege/siege-4.1.7.ebuild index 26e8142ae9ad..7d5b22915095 100644 --- a/app-benchmarks/siege/siege-4.1.7.ebuild +++ b/app-benchmarks/siege/siege-4.1.7.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit autotools bash-completion-r1 +inherit autotools flag-o-matic bash-completion-r1 DESCRIPTION="HTTP regression testing and benchmarking utility" HOMEPAGE="https://www.joedog.org/siege-home https://github.com/JoeDog/siege" @@ -38,6 +38,8 @@ src_prepare() { } src_configure() { + # bug #943908 + append-cflags -std=gnu17 local myconf=( $(use_with ssl ssl "${EPREFIX}/usr") ) econf "${myconf[@]}" }
