Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 641E984EAA for ; Mon, 10 Jul 2023 07:39:14 +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 zyzLRw-vJ-ch for ; Mon, 10 Jul 2023 07:39:14 +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 B85C684CCA for ; Mon, 10 Jul 2023 07:39:13 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id AC5ACFBDB; Mon, 10 Jul 2023 07:39:13 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_168897475338050" MIME-Version: 1.0 Date: Mon, 10 Jul 2023 07:39:13 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/graphics/mojoshader To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230710073913.AC5ACFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_168897475338050 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Jul 10 07:39:13 UTC 2023 Modified Files: pkgsrc/graphics/mojoshader: Makefile Log Message: mojoshader: Assumes compiler defaults to c99. To generate a diff of this commit: cvs rdiff -u -r1.8 -r1.9 pkgsrc/graphics/mojoshader/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_168897475338050 Content-Disposition: inline Content-Length: 745 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/graphics/mojoshader/Makefile diff -u pkgsrc/graphics/mojoshader/Makefile:1.8 pkgsrc/graphics/mojoshader/Makefile:1.9 --- pkgsrc/graphics/mojoshader/Makefile:1.8 Sat May 6 19:09:34 2023 +++ pkgsrc/graphics/mojoshader/Makefile Mon Jul 10 07:39:13 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.8 2023/05/06 19:09:34 ryoon Exp $ +# $NetBSD: Makefile,v 1.9 2023/07/10 07:39:13 nia Exp $ DISTNAME= mojoshader-0.0.20220415 PKGREVISION= 3 @@ -11,7 +11,8 @@ HOMEPAGE= https://www.icculus.org/mojosh COMMENT= Library to move calls to Direct3D shaders to OpenGL LICENSE= zlib -USE_LANGUAGES+= c c++ +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES+= c99 c++ USE_CMAKE= yes --_----------=_168897475338050--