Received: by mail.netbsd.org (Postfix, from userid 605) id BE9A184EB7; Mon, 3 Oct 2022 11:36:43 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id EF11184E9C for ; Mon, 3 Oct 2022 11:36:42 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([IPv6:::1]) by localhost (mail.netbsd.org [IPv6:::1]) (amavisd-new, port 10025) with ESMTP id Pn68os8OLjbu for ; Mon, 3 Oct 2022 11:36:42 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 4C3C184D5F for ; Mon, 3 Oct 2022 11:36:42 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4606AFA90; Mon, 3 Oct 2022 11:36:42 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1664797002189360" MIME-Version: 1.0 Date: Mon, 3 Oct 2022 11:36:42 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/security/py-cryptodome To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20221003113642.4606AFA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1664797002189360 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Oct 3 11:36:42 UTC 2022 Modified Files: pkgsrc/security/py-cryptodome: Makefile Log Message: py-cryptodome: Fails with a compiler defaulting to c89 To generate a diff of this commit: cvs rdiff -u -r1.43 -r1.44 pkgsrc/security/py-cryptodome/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1664797002189360 Content-Disposition: inline Content-Length: 846 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/py-cryptodome/Makefile diff -u pkgsrc/security/py-cryptodome/Makefile:1.43 pkgsrc/security/py-cryptodome/Makefile:1.44 --- pkgsrc/security/py-cryptodome/Makefile:1.43 Tue Jul 5 08:16:14 2022 +++ pkgsrc/security/py-cryptodome/Makefile Mon Oct 3 11:36:42 2022 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.43 2022/07/05 08:16:14 adam Exp $ +# $NetBSD: Makefile,v 1.44 2022/10/03 11:36:42 nia Exp $ DISTNAME= pycryptodome-3.15.0 PKGNAME= ${PYPKGPREFIX}-${DISTNAME:S/^py//} @@ -10,6 +10,9 @@ HOMEPAGE= https://www.pycryptodome.org/ COMMENT= Cryptographic and hash functions for Python LICENSE= public-domain AND python-software-foundation +# "error: 'for' loop initial declarations are only allowed in C99 mode" +USE_LANGUAGES= c99 + # XXX is this needed? CFLAGS.SunOS+= -std=c99 -D_XOPEN_SOURCE=600 --_----------=_1664797002189360--