Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 19F1684D39 for ; Sun, 9 Jul 2023 14:36:31 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id dwMIpiyKdyET for ; Sun, 9 Jul 2023 14:36:30 +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 5F76C84D2D for ; Sun, 9 Jul 2023 14:36:30 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 5197FFBDB; Sun, 9 Jul 2023 14:36:30 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688913390137670" MIME-Version: 1.0 Date: Sun, 9 Jul 2023 14:36:30 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/p5-Devel-MAT-Dumper To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230709143630.5197FFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688913390137670 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 9 14:36:30 UTC 2023 Modified Files: pkgsrc/devel/p5-Devel-MAT-Dumper: Makefile Log Message: p5-Devel-MAT-Dumper: Assumes compiler defaults to c99 To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/devel/p5-Devel-MAT-Dumper/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688913390137670 Content-Disposition: inline Content-Length: 869 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/p5-Devel-MAT-Dumper/Makefile diff -u pkgsrc/devel/p5-Devel-MAT-Dumper/Makefile:1.2 pkgsrc/devel/p5-Devel-MAT-Dumper/Makefile:1.3 --- pkgsrc/devel/p5-Devel-MAT-Dumper/Makefile:1.2 Thu Jul 6 09:39:02 2023 +++ pkgsrc/devel/p5-Devel-MAT-Dumper/Makefile Sun Jul 9 14:36:30 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.2 2023/07/06 09:39:02 wiz Exp $ +# $NetBSD: Makefile,v 1.3 2023/07/09 14:36:30 nia Exp $ DISTNAME= Devel-MAT-Dumper-0.47 PKGNAME= p5-${DISTNAME} @@ -11,6 +11,9 @@ HOMEPAGE= https://metacpan.org/pod/Devel COMMENT= Write a heap dump file for later analysis LICENSE= ${PERL5_LICENSE} +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES= c99 + #DEPENDS+= p5-Commandable-[0-9]*:../../devel/p5-Commandable #TEST_DEPENDS+= p5-Test-Identity-[0-9]*:../../devel/p5-Test-Identity --_----------=_1688913390137670--