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 D37141581F3 for ; Tue, 26 Nov 2024 02:56:04 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 35C91E0844; Tue, 26 Nov 2024 02:56:04 +0000 (UTC) Received: from smtp.gentoo.org (dev.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)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 111C4E0844 for ; Tue, 26 Nov 2024 02:56:04 +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 5A02A340836 for ; Tue, 26 Nov 2024 02:56:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id C42B81F28 for ; Tue, 26 Nov 2024 02:56:01 +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: <1732589725.10a63c37c1de76f654b504d9d8650270a030da4a.sam@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-crypt/mcrypt/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild X-VCS-Directories: app-crypt/mcrypt/ X-VCS-Committer: sam X-VCS-Committer-Name: Sam James X-VCS-Revision: 10a63c37c1de76f654b504d9d8650270a030da4a X-VCS-Branch: master Date: Tue, 26 Nov 2024 02:56:01 +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: 6e312acd-29ee-4eb7-8e41-90cb5ba0c4e7 X-Archives-Hash: f25abf485e5612125326a44e74db1443 commit: 10a63c37c1de76f654b504d9d8650270a030da4a Author: Sam James gentoo org> AuthorDate: Tue Nov 26 02:54:56 2024 +0000 Commit: Sam James gentoo org> CommitDate: Tue Nov 26 02:55:25 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=10a63c37 app-crypt/mcrypt: build w/ -std=gnu17 We already apply a bunch of patches, not worth adding another for this. Closes: https://bugs.gentoo.org/943960 Signed-off-by: Sam James gentoo.org> app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild b/app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild index c22efa90f5b7..499e2efbd242 100644 --- a/app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild +++ b/app-crypt/mcrypt/mcrypt-2.6.8-r3.ebuild @@ -3,6 +3,8 @@ EAPI=7 +inherit flag-o-matic + DESCRIPTION="Replacement of the old unix crypt(1)" HOMEPAGE="https://mcrypt.sourceforge.net/" SRC_URI="https://downloads.sourceforge.net/mcrypt/${P}.tar.gz" @@ -27,5 +29,8 @@ PATCHES=( ) src_configure() { + # bug #943960 + append-cflags -std=gnu17 + econf $(use_enable nls) }