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 93D541582EF for ; Sat, 15 Feb 2025 21:03:34 +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 6B42A343066 for ; Sat, 15 Feb 2025 21:03:34 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id 6CEED1102CD; Sat, 15 Feb 2025 21:03:33 +0000 (UTC) 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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id 62C9B1102CD for ; Sat, 15 Feb 2025 21:03:33 +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 22D4833BEED for ; Sat, 15 Feb 2025 21:03:33 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8745523C1 for ; Sat, 15 Feb 2025 21:03:31 +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: <1739653231.a3d877d69accfa72664aa461b675253b29e33487.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-editors/ng/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-editors/ng/ng-1.5_beta1-r3.ebuild X-VCS-Directories: app-editors/ng/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a3d877d69accfa72664aa461b675253b29e33487 X-VCS-Branch: master Date: Sat, 15 Feb 2025 21:03:31 +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: 8e372a0e-b330-49c6-84d5-6ad4c9a33e28 X-Archives-Hash: 34d8df12d2f0ed47e1877e399e5a0f1b commit: a3d877d69accfa72664aa461b675253b29e33487 Author: Sam James gentoo org> AuthorDate: Sat Feb 15 21:00:31 2025 +0000 Commit: Sam James gentoo org> CommitDate: Sat Feb 15 21:00:31 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a3d877d6 app-editors/ng: build w/ -std=gnu89 In 279064ccf66cd76b4ef8f2fb7d03db3b41d79655, a bunch of -Wno-* were added but that isn't sufficient for the C99 porting effort. Instead, pass -std=gnu89 which handles not making these errors out of the box. Bug: https://bugs.gentoo.org/729234 Closes: https://bugs.gentoo.org/880419 Signed-off-by: Sam James gentoo.org> app-editors/ng/ng-1.5_beta1-r3.ebuild | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/app-editors/ng/ng-1.5_beta1-r3.ebuild b/app-editors/ng/ng-1.5_beta1-r3.ebuild index 515e4a09db0d..1133173c0fad 100644 --- a/app-editors/ng/ng-1.5_beta1-r3.ebuild +++ b/app-editors/ng/ng-1.5_beta1-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2021 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI="7" @@ -34,10 +34,7 @@ src_prepare() { cd - >/dev/null || die cp sys/unix/configure . || die # written in K&R C - append-flags \ - -Wno-implicit-function-declaration \ - -Wno-implicit-int \ - -Wno-return-type + append-flags -std=gnu89 } src_configure() {