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.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8F36D158086 for ; Fri, 8 Oct 2021 12:33:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A75BBE081B; Fri, 8 Oct 2021 12:33:28 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8E1D9E081B for ; Fri, 8 Oct 2021 12:33:28 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-CHACHA20-POLY1305 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 678AA343306 for ; Fri, 8 Oct 2021 12:33:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CD2BA134 for ; Fri, 8 Oct 2021 12:33:25 +0000 (UTC) From: "Akinori Hattori" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Akinori Hattori" Message-ID: <1633696390.279064ccf66cd76b4ef8f2fb7d03db3b41d79655.hattya@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: hattya X-VCS-Committer-Name: Akinori Hattori X-VCS-Revision: 279064ccf66cd76b4ef8f2fb7d03db3b41d79655 X-VCS-Branch: master Date: Fri, 8 Oct 2021 12:33:25 +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: 0e4730cd-8971-487c-9147-282c05ef7532 X-Archives-Hash: 0c4cd867df5f2ca1b218af207503570f commit: 279064ccf66cd76b4ef8f2fb7d03db3b41d79655 Author: Akinori Hattori gentoo org> AuthorDate: Fri Oct 8 12:33:10 2021 +0000 Commit: Akinori Hattori gentoo org> CommitDate: Fri Oct 8 12:33:10 2021 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=279064cc app-editors/ng: fix build with Clang Closes: https://bugs.gentoo.org/729234 Package-Manager: Portage-3.0.20, Repoman-3.0.3 Signed-off-by: Akinori Hattori gentoo.org> app-editors/ng/ng-1.5_beta1-r3.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-editors/ng/ng-1.5_beta1-r3.ebuild b/app-editors/ng/ng-1.5_beta1-r3.ebuild index 9c71c540e8b..92a75d620f7 100644 --- a/app-editors/ng/ng-1.5_beta1-r3.ebuild +++ b/app-editors/ng/ng-1.5_beta1-r3.ebuild @@ -3,7 +3,7 @@ EAPI="7" -inherit autotools toolchain-funcs +inherit autotools flag-o-matic toolchain-funcs MY_P="${P/_beta/beta}" @@ -33,6 +33,11 @@ src_prepare() { eautoconf 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 } src_configure() {