From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (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 49167158232 for ; Mon, 9 Dec 2024 02:20:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 441BEE0D38; Mon, 9 Dec 2024 02:20:58 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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) server-digest SHA256) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 45143E0D38 for ; Mon, 9 Dec 2024 02:20:57 +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 59DFB34312A for ; Mon, 9 Dec 2024 02:20:56 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 3FEAE11DF for ; Mon, 9 Dec 2024 02:20:54 +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: <1733706223.502d9fddee36a8591daba07cbcdca75650209a4a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: net-analyzer/openbsd-netcat/ X-VCS-Repository: repo/gentoo X-VCS-Files: net-analyzer/openbsd-netcat/openbsd-netcat-1.218_p5.ebuild net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild X-VCS-Directories: net-analyzer/openbsd-netcat/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 502d9fddee36a8591daba07cbcdca75650209a4a X-VCS-Branch: master Date: Mon, 9 Dec 2024 02:20:54 +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: e8c8d41e-e396-4027-a1f4-8433219ec4e8 X-Archives-Hash: 4c641ed339b15fd9efc58548d3ebfb36 commit: 502d9fddee36a8591daba07cbcdca75650209a4a Author: Sam James gentoo org> AuthorDate: Mon Dec 9 01:03:43 2024 +0000 Commit: Sam James gentoo org> CommitDate: Mon Dec 9 01:03:43 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=502d9fdd net-analyzer/openbsd-netcat: build w/ -std=gnu99 Closes: https://bugs.gentoo.org/943711 Signed-off-by: Sam James gentoo.org> net-analyzer/openbsd-netcat/openbsd-netcat-1.218_p5.ebuild | 5 +++-- net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild | 3 ++- 2 files changed, 5 insertions(+), 3 deletions(-) diff --git a/net-analyzer/openbsd-netcat/openbsd-netcat-1.218_p5.ebuild b/net-analyzer/openbsd-netcat/openbsd-netcat-1.218_p5.ebuild index c2ded9744780..6de6a5851681 100644 --- a/net-analyzer/openbsd-netcat/openbsd-netcat-1.218_p5.ebuild +++ b/net-analyzer/openbsd-netcat/openbsd-netcat-1.218_p5.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -47,7 +47,8 @@ src_prepare() { } src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" + # gnu99 for bug #943711 + emake CC="$(tc-getCC) -std=gnu99" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" } src_install() { diff --git a/net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild b/net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild index d07c4bf17e73..3b971fe91184 100644 --- a/net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild +++ b/net-analyzer/openbsd-netcat/openbsd-netcat-1.219_p1.ebuild @@ -47,7 +47,8 @@ src_prepare() { } src_compile() { - emake CC="$(tc-getCC)" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" PKG_CONFIG="$(tc-getPKG_CONFIG)" + # gnu99 for bug #943711 + emake CC="$(tc-getCC) -std=gnu99" CFLAGS="${CFLAGS}" LDFLAGS="${LDFLAGS}" PKG_CONFIG="$(tc-getPKG_CONFIG)" } src_install() {