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 2D23E1581EC for ; Fri, 22 Nov 2024 16:42:29 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 556EFE0856; Fri, 22 Nov 2024 16:42:28 +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 pigeon.gentoo.org (Postfix) with ESMTPS id 3FD9CE0856 for ; Fri, 22 Nov 2024 16:42:28 +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 78052342FA2 for ; Fri, 22 Nov 2024 16:42:27 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id D82BB1295 for ; Fri, 22 Nov 2024 16:42:25 +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: <1732293727.65a3e488d9726cf06e31cbc6285746bd5b5b301b.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/mit-krb5/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/mit-krb5/mit-krb5-1.21.3.ebuild X-VCS-Directories: app-crypt/mit-krb5/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 65a3e488d9726cf06e31cbc6285746bd5b5b301b X-VCS-Branch: master Date: Fri, 22 Nov 2024 16:42:25 +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: 2950c047-aec9-43a4-87ea-3a750db65932 X-Archives-Hash: 67ab711f6a0b5c3a0d5855dc82e704da commit: 65a3e488d9726cf06e31cbc6285746bd5b5b301b Author: Sam James gentoo org> AuthorDate: Fri Nov 22 16:37:37 2024 +0000 Commit: Sam James gentoo org> CommitDate: Fri Nov 22 16:42:07 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=65a3e488 app-crypt/mit-krb5: build w/ -std=gnu17 There's a PR upstream to fix this but in the past when I've tried to backport patches, they won't apply, so just use gnu17 for now. Closes: https://bugs.gentoo.org/944006 Signed-off-by: Sam James gentoo.org> app-crypt/mit-krb5/mit-krb5-1.21.3.ebuild | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app-crypt/mit-krb5/mit-krb5-1.21.3.ebuild b/app-crypt/mit-krb5/mit-krb5-1.21.3.ebuild index f78a3e493278..f795a00e77fc 100644 --- a/app-crypt/mit-krb5/mit-krb5-1.21.3.ebuild +++ b/app-crypt/mit-krb5/mit-krb5-1.21.3.ebuild @@ -71,6 +71,9 @@ src_configure() { # lto-type-mismatch (bug #854225) filter-lto + # https://github.com/krb5/krb5/pull/1304 (bug #944006) + append-cflags -std=gnu17 + multilib-minimal_src_configure }