From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id C57FB1582EF for ; Sun, 16 Feb 2025 13:02:56 +0000 (UTC) Received: from lists.gentoo.org (bobolink.gentoo.org [140.211.166.189]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id A96B8343083 for ; Sun, 16 Feb 2025 13:02:56 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BFD68110471; Sun, 16 Feb 2025 13:02:52 +0000 (UTC) Received: from smtp.gentoo.org (mail.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B6261110471 for ; Sun, 16 Feb 2025 13:02:52 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 6E34A343019 for ; Sun, 16 Feb 2025 13:02:52 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CDED52654 for ; Sun, 16 Feb 2025 13:02:50 +0000 (UTC) From: "Sam James" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Sam James" Message-ID: <1739710306.c22ae5af244d8888e59188c217a295cf9c4b8824.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-benchmarks/siege/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-benchmarks/siege/siege-4.1.7.ebuild X-VCS-Directories: app-benchmarks/siege/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: c22ae5af244d8888e59188c217a295cf9c4b8824 X-VCS-Branch: master Date: Sun, 16 Feb 2025 13:02:50 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: 67fad1f5-f359-4204-8181-cdb58f43e8a9 X-Archives-Hash: 902d56c72ba3d5dae0396678071520f5 commit: c22ae5af244d8888e59188c217a295cf9c4b8824 Author: Sam James gentoo org> AuthorDate: Sun Feb 16 12:51:46 2025 +0000 Commit: Sam James gentoo 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 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[@]}" }