Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1F07285283 for ; Tue, 7 Nov 2023 11:27:23 +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 JhFq8tcU3fyO for ; Tue, 7 Nov 2023 11:27:22 +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 5AB20850F1 for ; Tue, 7 Nov 2023 11:27:22 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 4E1ECFA2D; Tue, 7 Nov 2023 11:27:22 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_169935644213110" MIME-Version: 1.0 Date: Tue, 7 Nov 2023 11:27:22 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/lang To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20231107112722.4E1ECFA2D@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_169935644213110 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Tue Nov 7 11:27:22 UTC 2023 Modified Files: pkgsrc/lang/python311: Makefile pkgsrc/lang/python312: Makefile Log Message: Python from version 3.11 onwards requires a C11 capable compiler. To generate a diff of this commit: cvs rdiff -u -r1.16 -r1.17 pkgsrc/lang/python311/Makefile cvs rdiff -u -r1.6 -r1.7 pkgsrc/lang/python312/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_169935644213110 Content-Disposition: inline Content-Length: 1308 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/lang/python311/Makefile diff -u pkgsrc/lang/python311/Makefile:1.16 pkgsrc/lang/python311/Makefile:1.17 --- pkgsrc/lang/python311/Makefile:1.16 Wed Oct 25 21:33:15 2023 +++ pkgsrc/lang/python311/Makefile Tue Nov 7 11:27:22 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.16 2023/10/25 21:33:15 wiz Exp $ +# $NetBSD: Makefile,v 1.17 2023/11/07 11:27:22 nia Exp $ .include "dist.mk" @@ -35,6 +35,7 @@ PRINT_PLIST_AWK+= sub(/.opt-[12].pyc$$/, USE_LANGUAGES= c c++ USE_TOOLS+= pkg-config +USE_CC_FEATURES+= c11 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-shared CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl} Index: pkgsrc/lang/python312/Makefile diff -u pkgsrc/lang/python312/Makefile:1.6 pkgsrc/lang/python312/Makefile:1.7 --- pkgsrc/lang/python312/Makefile:1.6 Fri Oct 27 08:02:29 2023 +++ pkgsrc/lang/python312/Makefile Tue Nov 7 11:27:22 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.6 2023/10/27 08:02:29 wiz Exp $ +# $NetBSD: Makefile,v 1.7 2023/11/07 11:27:22 nia Exp $ .include "dist.mk" @@ -35,6 +35,7 @@ PRINT_PLIST_AWK+= sub(/.opt-[12].pyc$$/, USE_LANGUAGES= c c++ USE_TOOLS+= pkg-config +USE_CC_FEATURES+= c11 GNU_CONFIGURE= yes CONFIGURE_ARGS+= --enable-shared CONFIGURE_ARGS+= --with-openssl=${BUILDLINK_PREFIX.openssl} --_----------=_169935644213110--