Received: by mail.netbsd.org (Postfix, from userid 605) id CFCE884D66; Tue, 1 Nov 2022 18:25:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 0A7F584D4A for ; Tue, 1 Nov 2022 18:25:37 +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 MkxmBGUruhCP for ; Tue, 1 Nov 2022 18:25:36 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 54A2484D00 for ; Tue, 1 Nov 2022 18:25:36 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 469A4FA90; Tue, 1 Nov 2022 18:25:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1667327136255700" MIME-Version: 1.0 Date: Tue, 1 Nov 2022 18:25:36 +0000 From: "Thomas Klausner" Subject: CVS commit: pkgsrc/textproc/py-expat To: pkgsrc-changes@NetBSD.org Reply-To: wiz@netbsd.org X-Mailer: log_accum Message-Id: <20221101182536.469A4FA90@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1667327136255700 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: wiz Date: Tue Nov 1 18:25:36 UTC 2022 Modified Files: pkgsrc/textproc/py-expat: Makefile Log Message: py-expat: switch to c11 for compilation Needed by python 3.11 version due to using static_assert() Bump PKGREVISION. To generate a diff of this commit: cvs rdiff -u -r1.32 -r1.33 pkgsrc/textproc/py-expat/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1667327136255700 Content-Disposition: inline Content-Length: 776 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/textproc/py-expat/Makefile diff -u pkgsrc/textproc/py-expat/Makefile:1.32 pkgsrc/textproc/py-expat/Makefile:1.33 --- pkgsrc/textproc/py-expat/Makefile:1.32 Sat Oct 9 10:55:00 2021 +++ pkgsrc/textproc/py-expat/Makefile Tue Nov 1 18:25:36 2022 @@ -1,14 +1,15 @@ -# $NetBSD: Makefile,v 1.32 2021/10/09 10:55:00 nia Exp $ +# $NetBSD: Makefile,v 1.33 2022/11/01 18:25:36 wiz Exp $ PKGNAME= ${PYPKGPREFIX}-expat-${PY_DISTVERSION} +PKGREVISION= 1 CATEGORIES= textproc python MAINTAINER= pkgsrc-users@NetBSD.org HOMEPAGE= https://www.python.org/ COMMENT= Python interface to expat -# "error: 'for' loop initial declarations are only allowed in C99 mode" -USE_LANGUAGES= c99 +# static_assert() +USE_LANGUAGES= c11 USE_GCC_RUNTIME= yes --_----------=_1667327136255700--