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 B22AE15821F for ; Sun, 24 Nov 2024 22:24:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id D7CAAE0855; Sun, 24 Nov 2024 22:24:29 +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 C44CDE0855 for ; Sun, 24 Nov 2024 22:24:29 +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 C18E23406D1 for ; Sun, 24 Nov 2024 22:24:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 2CC6F130F for ; Sun, 24 Nov 2024 22:24:27 +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: <1732486876.a405b95e9fce63cf1aa1dd7ec8ebfcb89fa7b666.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: gnome-base/gdm/ X-VCS-Repository: repo/gentoo X-VCS-Files: gnome-base/gdm/gdm-45.0.1-r2.ebuild gnome-base/gdm/gdm-46.2-r1.ebuild X-VCS-Directories: gnome-base/gdm/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: a405b95e9fce63cf1aa1dd7ec8ebfcb89fa7b666 X-VCS-Branch: master Date: Sun, 24 Nov 2024 22:24:27 +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: 6f5f44dd-de2a-47b4-8ff3-3be7629be4e1 X-Archives-Hash: 1e7322238ce6b1b932424c933110f1c2 commit: a405b95e9fce63cf1aa1dd7ec8ebfcb89fa7b666 Author: Sam James gentoo org> AuthorDate: Sun Nov 24 22:21:16 2024 +0000 Commit: Sam James gentoo org> CommitDate: Sun Nov 24 22:21:16 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=a405b95e gnome-base/gdm: build w/ -std=gnu17 Not going to worry about this more until we have latest version in tree. Closes: https://bugs.gentoo.org/944223 Signed-off-by: Sam James gentoo.org> gnome-base/gdm/gdm-45.0.1-r2.ebuild | 5 ++++- gnome-base/gdm/gdm-46.2-r1.ebuild | 5 ++++- 2 files changed, 8 insertions(+), 2 deletions(-) diff --git a/gnome-base/gdm/gdm-45.0.1-r2.ebuild b/gnome-base/gdm/gdm-45.0.1-r2.ebuild index 5d7c523d97dc..751155c45338 100644 --- a/gnome-base/gdm/gdm-45.0.1-r2.ebuild +++ b/gnome-base/gdm/gdm-45.0.1-r2.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit desktop gnome2 meson pam readme.gentoo-r1 systemd udev +inherit desktop flag-o-matic gnome2 meson pam readme.gentoo-r1 systemd udev DESCRIPTION="GNOME Display Manager for managing graphical display servers and user logins" HOMEPAGE="https://wiki.gnome.org/Projects/GDM https://gitlab.gnome.org/GNOME/gdm" @@ -125,6 +125,9 @@ src_prepare() { } src_configure() { + # bug #944223 + append-cflags -std=gnu17 + # --with-initial-vt=7 conflicts with plymouth, bug #453392 # gdm-3.30 now reaps (stops) the login screen when the login VT isn't active, which # saves on memory. However this means if we don't start on VT1, gdm doesn't start up diff --git a/gnome-base/gdm/gdm-46.2-r1.ebuild b/gnome-base/gdm/gdm-46.2-r1.ebuild index 8acd72ad17fe..abf4cbfb61f7 100644 --- a/gnome-base/gdm/gdm-46.2-r1.ebuild +++ b/gnome-base/gdm/gdm-46.2-r1.ebuild @@ -3,7 +3,7 @@ EAPI=8 -inherit desktop gnome2 meson pam readme.gentoo-r1 systemd udev +inherit desktop flag-o-matic gnome2 meson pam readme.gentoo-r1 systemd udev DESCRIPTION="GNOME Display Manager for managing graphical display servers and user logins" HOMEPAGE="https://wiki.gnome.org/Projects/GDM https://gitlab.gnome.org/GNOME/gdm" @@ -121,6 +121,9 @@ src_prepare() { } src_configure() { + # bug #944223 + append-cflags -std=gnu17 + # --with-initial-vt=7 conflicts with plymouth, bug #453392 # gdm-3.30 now reaps (stops) the login screen when the login VT isn't active, which # saves on memory. However this means if we don't start on VT1, gdm doesn't start up