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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 62E3A1581FB for ; Sat, 31 Aug 2024 02:23:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2CF7BE29B5; Sat, 31 Aug 2024 02:23:42 +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 14C5BE29B5 for ; Sat, 31 Aug 2024 02:23:42 +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 2102F33FE60 for ; Sat, 31 Aug 2024 02:23:41 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 4DC5F1F29 for ; Sat, 31 Aug 2024 02:23:39 +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: <1725070020.1a26269e24497a9574ea2668d3d2b10f58c52ce4.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/libconfig/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/libconfig/libconfig-1.7.3.ebuild X-VCS-Directories: dev-libs/libconfig/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 1a26269e24497a9574ea2668d3d2b10f58c52ce4 X-VCS-Branch: master Date: Sat, 31 Aug 2024 02:23:39 +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: 6867bcbc-2711-48ad-90ff-38aa3f1beb3a X-Archives-Hash: 9f97b3f63138489db49b0f255f9c481c commit: 1a26269e24497a9574ea2668d3d2b10f58c52ce4 Author: Sam James gentoo org> AuthorDate: Sat Aug 31 02:06:49 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sat Aug 31 02:07:00 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1a26269e dev-libs/libconfig: build with gnu17 Fails w/ gnu23 because of old decls. Signed-off-by: Sam James gentoo.org> dev-libs/libconfig/libconfig-1.7.3.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dev-libs/libconfig/libconfig-1.7.3.ebuild b/dev-libs/libconfig/libconfig-1.7.3.ebuild index 449f75c98860..36cad66a2189 100644 --- a/dev-libs/libconfig/libconfig-1.7.3.ebuild +++ b/dev-libs/libconfig/libconfig-1.7.3.ebuild @@ -3,7 +3,7 @@ EAPI=7 -inherit autotools multilib-minimal +inherit autotools flag-o-matic multilib-minimal DESCRIPTION="Libconfig is a simple library for manipulating structured configuration files" HOMEPAGE=" @@ -26,9 +26,14 @@ DEPEND=" src_prepare() { default + + # Fails with c23 b/c old decls + append-cflags -std=gnu17 + sed -i \ -e '/sleep 3/d' \ configure.ac || die + eautoreconf multilib_copy_sources }