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@gentoo.org>
This commit is contained in:
Sam James 2025-02-16 12:51:46 +00:00
parent 1a88f3abcb
commit c22ae5af24
No known key found for this signature in database
GPG Key ID: 738409F520DF9190

View File

@ -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[@]}"
}