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 84C811581F3 for ; Sun, 1 Dec 2024 14:56:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id B24C7E07F6; Sun, 1 Dec 2024 14:56:29 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 5062AE07F1 for ; Sun, 1 Dec 2024 14:56:29 +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 6E61A3406BF for ; Sun, 1 Dec 2024 14:56:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id CEB3AAED for ; Sun, 1 Dec 2024 14:56:26 +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: <1733064947.74bead07daccb608dacc9def810ad9924a9260b0.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/byaccj/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/byaccj/byaccj-1.15-r3.ebuild X-VCS-Directories: dev-java/byaccj/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 74bead07daccb608dacc9def810ad9924a9260b0 X-VCS-Branch: master Date: Sun, 1 Dec 2024 14:56:26 +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: 80ac2cf2-dfdd-42ad-b3ce-aad5231e5041 X-Archives-Hash: 5dff836cac643bd3ad3d7ad65a3733b1 commit: 74bead07daccb608dacc9def810ad9924a9260b0 Author: Sam James gentoo org> AuthorDate: Sun Dec 1 14:39:35 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Dec 1 14:55:47 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=74bead07 dev-java/byaccj: build w/ -std=gnu17 Closes: https://bugs.gentoo.org/880329 Closes: https://bugs.gentoo.org/944104 Signed-off-by: Sam James gentoo.org> dev-java/byaccj/byaccj-1.15-r3.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-java/byaccj/byaccj-1.15-r3.ebuild b/dev-java/byaccj/byaccj-1.15-r3.ebuild index e1f996fcb550..a2d15fc92a46 100644 --- a/dev-java/byaccj/byaccj-1.15-r3.ebuild +++ b/dev-java/byaccj/byaccj-1.15-r3.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="A Java extension of BSD YACC-compatible parser generator" HOMEPAGE="https://byaccj.sourceforge.net/" @@ -22,6 +22,9 @@ PATCHES=( src_compile() { cp "${FILESDIR}/Makefile" src/Makefile || die + + # bug #880329, bug #944104 + append-cflags -std=gnu17 emake CC="$(tc-getCC)" LDFLAGS="${LDFLAGS}" CFLAGS="${CFLAGS}" -C src linux }