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 5FE001581EE for ; Tue, 19 Nov 2024 12:06:52 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 63B28E0805; Tue, 19 Nov 2024 12:06:51 +0000 (UTC) Received: from smtp.gentoo.org (smtp.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 pigeon.gentoo.org (Postfix) with ESMTPS id 50586E0805 for ; Tue, 19 Nov 2024 12:06:51 +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 8A65E335D75 for ; Tue, 19 Nov 2024 12:06:50 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0633F1682 for ; Tue, 19 Nov 2024 12:06:49 +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: <1732017942.379ca097b966b40890b5a4572502b8f9352a374d.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: media-libs/cogl/ X-VCS-Repository: repo/gentoo X-VCS-Files: media-libs/cogl/cogl-1.22.8-r3.ebuild X-VCS-Directories: media-libs/cogl/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 379ca097b966b40890b5a4572502b8f9352a374d X-VCS-Branch: master Date: Tue, 19 Nov 2024 12:06:49 +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: d3d20960-c65f-4415-ae2a-04c9a7d30a28 X-Archives-Hash: 03cb622658a8af05016c01137d54968b commit: 379ca097b966b40890b5a4572502b8f9352a374d Author: Sam James gentoo org> AuthorDate: Tue Nov 19 12:05:42 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 19 12:05:42 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=379ca097 media-libs/cogl: build w/ -std=gnu17 Archived upstream. Closes: https://bugs.gentoo.org/943759 Signed-off-by: Sam James gentoo.org> media-libs/cogl/cogl-1.22.8-r3.ebuild | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/media-libs/cogl/cogl-1.22.8-r3.ebuild b/media-libs/cogl/cogl-1.22.8-r3.ebuild index f1f6b3256855..60f9a41c27f7 100644 --- a/media-libs/cogl/cogl-1.22.8-r3.ebuild +++ b/media-libs/cogl/cogl-1.22.8-r3.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -7,7 +7,7 @@ EAPI=8 # It's upstreamed so should be able to drop in future # bug #778041 GNOME2_EAUTORECONF="yes" -inherit gnome2 +inherit flag-o-matic gnome2 DESCRIPTION="A library for using 3D graphics hardware to draw pretty pictures" HOMEPAGE="https://www.cogl3d.org/" @@ -81,6 +81,9 @@ src_prepare() { } src_configure() { + # bug #943759 + append-cflags -std=gnu17 + # TODO: think about quartz, sdl # Prefer gl over gles2 if both are selected # Profiling needs uprof, which is not available in portage yet, bug #484750