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 55C061581FB for ; Tue, 26 Nov 2024 06:34:03 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id DFA71E07F1; Tue, 26 Nov 2024 06:34:01 +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 E8B21E07EA for ; Tue, 26 Nov 2024 06:34:00 +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 F1558343053 for ; Tue, 26 Nov 2024 06:33:59 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 502B713F5 for ; Tue, 26 Nov 2024 06:33: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: <1732601639.45ecc314b93ee72ed92f34aeff3ae9ea2289d4dc.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/screen/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/screen/screen-4.9.1-r1.ebuild X-VCS-Directories: app-misc/screen/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 45ecc314b93ee72ed92f34aeff3ae9ea2289d4dc X-VCS-Branch: master Date: Tue, 26 Nov 2024 06:33: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: a7a51ca5-389c-415c-84b4-7f23639aaf75 X-Archives-Hash: 6f0b5c16d4a9a4fb423d92ad0f2c6711 commit: 45ecc314b93ee72ed92f34aeff3ae9ea2289d4dc Author: Sam James gentoo org> AuthorDate: Tue Nov 26 06:13:59 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 26 06:13:59 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=45ecc314 app-misc/screen: build w/ -std=gnu17 This might be fixed on master (5.0.x) although given the issue mentioned in bug #935755 wrt missed cherry-picks from stable -> master upstream, not sure if it really is or not. In any case, just build with -std=gnu17 for now, as it's harmless and screen is an important package. Bug: https://bugs.gentoo.org/935755 Closes: https://bugs.gentoo.org/944429 Signed-off-by: Sam James gentoo.org> app-misc/screen/screen-4.9.1-r1.ebuild | 2 ++ 1 file changed, 2 insertions(+) diff --git a/app-misc/screen/screen-4.9.1-r1.ebuild b/app-misc/screen/screen-4.9.1-r1.ebuild index c7bbb48e8051..074cf1385712 100644 --- a/app-misc/screen/screen-4.9.1-r1.ebuild +++ b/app-misc/screen/screen-4.9.1-r1.ebuild @@ -64,6 +64,8 @@ src_prepare() { } src_configure() { + # bug #944429 (revisit this on >= 5.0.0) + append-cflags -std=gnu17 append-lfs-flags append-cppflags "-DMAXWIN=${MAX_SCREEN_WINDOWS:-100}"