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 AACCA1582EF for ; Tue, 11 Mar 2025 07:54:08 +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 909B53430ED for ; Tue, 11 Mar 2025 07:54:08 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BD6D11103C7; Tue, 11 Mar 2025 07:54:04 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id B23D61103C7 for ; Tue, 11 Mar 2025 07:54:04 +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 69B893430F4 for ; Tue, 11 Mar 2025 07:54:04 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9EA3228D4 for ; Tue, 11 Mar 2025 07:54:02 +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: <1741679611.694730f4aa53c990495eb61b61c69d3b0ef3b371.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-apps/memtester/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-apps/memtester/memtester-4.6.0.ebuild X-VCS-Directories: sys-apps/memtester/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 694730f4aa53c990495eb61b61c69d3b0ef3b371 X-VCS-Branch: master Date: Tue, 11 Mar 2025 07:54:02 +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: a85afcd6-c0a0-40f2-b6a3-cac3dbce9743 X-Archives-Hash: a62c7e90e33222453022f3ab1155ce4a commit: 694730f4aa53c990495eb61b61c69d3b0ef3b371 Author: Alfred Wingate protonmail com> AuthorDate: Mon Mar 10 16:25:51 2025 +0000 Commit: Sam James gentoo org> CommitDate: Tue Mar 11 07:53:31 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=694730f4 sys-apps/memtester: workaround c23 issue Bug: https://bugs.gentoo.org/943794 Signed-off-by: Alfred Wingate protonmail.com> Signed-off-by: Sam James gentoo.org> sys-apps/memtester/memtester-4.6.0.ebuild | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/sys-apps/memtester/memtester-4.6.0.ebuild b/sys-apps/memtester/memtester-4.6.0.ebuild index cbdc8875f2a9..e8aa7866a6b9 100644 --- a/sys-apps/memtester/memtester-4.6.0.ebuild +++ b/sys-apps/memtester/memtester-4.6.0.ebuild @@ -1,9 +1,9 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=7 -inherit toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="Userspace utility for testing the memory subsystem for faults" HOMEPAGE="http://pyropus.ca/software/memtester/" @@ -17,6 +17,8 @@ SLOT="0" KEYWORDS="~alpha amd64 ~arm arm64 ~loong ~mips ppc ppc64 ~riscv sparc x86" src_configure() { + # bug #943794 + append-cflags -std=gnu17 echo "$(tc-getCC) ${CFLAGS} ${CPPFLAGS} -DPOSIX -c" > conf-cc || die echo "$(tc-getCC) ${CFLAGS} ${LDFLAGS}" > conf-ld || die }