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 CDA4E15813A for ; Thu, 16 Jan 2025 17:49:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 267BDE07EA; Thu, 16 Jan 2025 17:49:25 +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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id DBE9CE07EA for ; Thu, 16 Jan 2025 17:49:24 +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)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 7D5DB34315A for ; Thu, 16 Jan 2025 17:49:22 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 18AD2231C for ; Thu, 16 Jan 2025 17:49:21 +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: <1737049735.4c4999d039d778198b06bc5224841b93e78032ef.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-fs/hfsplusutils/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild X-VCS-Directories: sys-fs/hfsplusutils/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 4c4999d039d778198b06bc5224841b93e78032ef X-VCS-Branch: master Date: Thu, 16 Jan 2025 17:49:21 +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: 06992966-54ea-4b7a-944b-9a9e99b08693 X-Archives-Hash: f30ea0560ef63390658877616a32c685 commit: 4c4999d039d778198b06bc5224841b93e78032ef Author: Sam James gentoo org> AuthorDate: Thu Jan 16 17:48:55 2025 +0000 Commit: Sam James gentoo org> CommitDate: Thu Jan 16 17:48:55 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=4c4999d0 sys-fs/hfsplusutils: build w/ -std=gnu17 Signed-off-by: Sam James gentoo.org> sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild b/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild index 203f0abf002b..189fa9cfe1a8 100644 --- a/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild +++ b/sys-fs/hfsplusutils/hfsplusutils-1.0.4-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2024 Gentoo Authors +# Copyright 1999-2025 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -38,6 +38,8 @@ src_prepare() { src_configure() { # brittle codebase with lots of type punning, breaks LTO (#863902) append-cflags -fno-strict-aliasing + # breaks w/ C23 dropping unprototyped funcs + append-cflags -std=gnu17 default }