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 E3B1B1584AD for ; Sun, 11 May 2025 06:52:26 +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) server-digest SHA256) (No client certificate requested) (Authenticated sender: relay-lists.gentoo.org@gentoo.org) by smtp.gentoo.org (Postfix) with ESMTPSA id CF0BE3430FA for ; Sun, 11 May 2025 06:52:26 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id D4105110277; Sun, 11 May 2025 06:52: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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id C9026110277 for ; Sun, 11 May 2025 06:52:25 +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 7D0B1343105 for ; Sun, 11 May 2025 06:52:25 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B5100DA7 for ; Sun, 11 May 2025 06:52:23 +0000 (UTC) From: "Joonas Niilola" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Joonas Niilola" Message-ID: <1746946337.a92b5fda113c39a1a7480cc88ffcaebf7bb90d08.juippis@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-libs/efl/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-libs/efl/efl-1.28.1.ebuild X-VCS-Directories: dev-libs/efl/ X-VCS-Committer: juippis X-VCS-Committer-Name: Joonas Niilola X-VCS-Revision: a92b5fda113c39a1a7480cc88ffcaebf7bb90d08 X-VCS-Branch: master Date: Sun, 11 May 2025 06:52:23 +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: 0673b411-9ed1-42d8-90b4-057cece09b10 X-Archives-Hash: c1c20438b2bd656c29a338ade82cb4a4 commit: a92b5fda113c39a1a7480cc88ffcaebf7bb90d08 Author: Joonas Niilola gentoo org> AuthorDate: Sun May 11 06:50:02 2025 +0000 Commit: Joonas Niilola gentoo org> CommitDate: Sun May 11 06:52:17 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a92b5fda dev-libs/efl: build 1.28.1 with -std=gnu17 for now - while upstream is aware and working on gcc-15 fixes, we need a working solution right now as gcc-15 is in ~testing. Closes: https://bugs.gentoo.org/944215 Signed-off-by: Joonas Niilola gentoo.org> dev-libs/efl/efl-1.28.1.ebuild | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dev-libs/efl/efl-1.28.1.ebuild b/dev-libs/efl/efl-1.28.1.ebuild index e26de8806167..e7b77e3b0604 100644 --- a/dev-libs/efl/efl-1.28.1.ebuild +++ b/dev-libs/efl/efl-1.28.1.ebuild @@ -289,6 +289,10 @@ src_configure() { append-cflags -D_LARGEFILE64_SOURCE fi + # https://bugs.gentoo.org/944215 + # https://git.enlightenment.org/enlightenment/efl/issues/93 + append-cflags -std=gnu17 + meson_src_configure }