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 94B8E1581EE for ; Mon, 24 Mar 2025 01:54:36 +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 70E243434F5 for ; Mon, 24 Mar 2025 01:54:36 +0000 (UTC) Received: from bobolink.gentoo.org (localhost [127.0.0.1]) by bobolink.gentoo.org (Postfix) with ESMTP id BD8631104AE; Mon, 24 Mar 2025 01:54:31 +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) server-digest SHA256) (No client certificate requested) by bobolink.gentoo.org (Postfix) with ESMTPS id AD5951104AD for ; Mon, 24 Mar 2025 01:54:31 +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 6248D3434CB for ; Mon, 24 Mar 2025 01:54:31 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CCBC1EEA for ; Mon, 24 Mar 2025 01:54:29 +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: <1742780015.b191430fb39de48b5f6397e67c0b93bfa3825226.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-misc/ckermit/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-misc/ckermit/ckermit-9.0.302-r1.ebuild X-VCS-Directories: app-misc/ckermit/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: b191430fb39de48b5f6397e67c0b93bfa3825226 X-VCS-Branch: master Date: Mon, 24 Mar 2025 01:54:29 +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: 56e92c10-e461-4173-9ef0-d4203016e1c3 X-Archives-Hash: 6455730b51d34ebcc56472467d202e9a commit: b191430fb39de48b5f6397e67c0b93bfa3825226 Author: Sam James gentoo org> AuthorDate: Mon Mar 24 01:33:35 2025 +0000 Commit: Sam James gentoo org> CommitDate: Mon Mar 24 01:33:35 2025 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=b191430f app-misc/ckermit: pass -std=gnu89 for old 9.x I just revbupmed 9.x for the LICENSE fix but it won't be buildable without this. Bug: https://bugs.gentoo.org/408335 Bug: https://bugs.gentoo.org/870787 Bug: https://bugs.gentoo.org/920452 Signed-off-by: Sam James gentoo.org> app-misc/ckermit/ckermit-9.0.302-r1.ebuild | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/app-misc/ckermit/ckermit-9.0.302-r1.ebuild b/app-misc/ckermit/ckermit-9.0.302-r1.ebuild index 6e22dc74009c..b76ce51b6be3 100644 --- a/app-misc/ckermit/ckermit-9.0.302-r1.ebuild +++ b/app-misc/ckermit/ckermit-9.0.302-r1.ebuild @@ -41,6 +41,10 @@ src_prepare() { } src_compile() { + filter-lto + + BUILD_CFLAGS+=" -std=gnu89" + # we don't enable any of the telnet/ftp authentication stuff # since there are other packages which do these things better # USE="kerberos pam shadow ssl zlib" @@ -57,7 +61,8 @@ src_compile() { append-cppflags -DNOARROWKEYS # bug #669332 emake \ CC="$(tc-getCC)" \ - KFLAGS="${CPPFLAGS}" \ + CC2="$(tc-getCC)" \ + KFLAGS="${CPPFLAGS} -std=gnu89 -Wno-format-security" \ LIBS="-lcrypt -lresolv -lutil ${LIBS}" \ LNKFLAGS="${LDFLAGS}" \ linuxa