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 999DA1580EB for ; Wed, 28 May 2025 16:48:10 +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 813983431C6 for ; Wed, 28 May 2025 16:48:10 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id B97C811049F; Wed, 28 May 2025 16:48:01 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.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 bobolink.gentoo.org (Postfix) with ESMTPS id AF93D11049F for ; Wed, 28 May 2025 16:48:01 +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 6B4AC343187 for ; Wed, 28 May 2025 16:48:01 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id A95F028EF for ; Wed, 28 May 2025 16:47:58 +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: <1748450846.f97b83809d14bf7aa32e93b003a2457cf4340139.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-cpp/libmcpp/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-cpp/libmcpp/libmcpp-2.7.2_p5-r2.ebuild X-VCS-Directories: dev-cpp/libmcpp/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: f97b83809d14bf7aa32e93b003a2457cf4340139 X-VCS-Branch: master Date: Wed, 28 May 2025 16:47:58 +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: 39402611-f15c-4a8c-8e57-a52e4e331bc5 X-Archives-Hash: ba76083d63152490f921196eedc8eefe commit: f97b83809d14bf7aa32e93b003a2457cf4340139 Author: Sam James gentoo org> AuthorDate: Wed May 28 16:46:45 2025 +0000 Commit: Sam James gentoo org> CommitDate: Wed May 28 16:47:26 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f97b8380 dev-cpp/libmcpp: build w/ -std=gnu17 There's some patches on the linked bug but we're already applying a bunch. We may switch to the mentioned fork though. Closes: https://bugs.gentoo.org/944370 Signed-off-by: Sam James gentoo.org> dev-cpp/libmcpp/libmcpp-2.7.2_p5-r2.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/dev-cpp/libmcpp/libmcpp-2.7.2_p5-r2.ebuild b/dev-cpp/libmcpp/libmcpp-2.7.2_p5-r2.ebuild index 1cba310fb86c..644634db56e4 100644 --- a/dev-cpp/libmcpp/libmcpp-2.7.2_p5-r2.ebuild +++ b/dev-cpp/libmcpp/libmcpp-2.7.2_p5-r2.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=8 -inherit autotools +inherit autotools flag-o-matic MY_PN=${PN/lib/} MY_P=$(ver_cut 1-4 ${MY_PN}-${PV}) @@ -38,6 +38,9 @@ src_prepare() { } src_configure() { + # bug #944370 + append-cflags -std=gnu17 + econf --enable-mcpplib }