Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9A01984E81 for ; Sun, 9 Jul 2023 20:28:00 +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 A5-U8RE4CfEW for ; Sun, 9 Jul 2023 20:28:00 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 2C59084E59 for ; Sun, 9 Jul 2023 20:28:00 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 260EAFBDB; Sun, 9 Jul 2023 20:28:00 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688934480119800" MIME-Version: 1.0 Date: Sun, 9 Jul 2023 20:28:00 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/emulators/pcsxr To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230709202800.260EAFBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688934480119800 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 9 20:28:00 UTC 2023 Modified Files: pkgsrc/emulators/pcsxr: Makefile Log Message: pcsxr: Assumes compiler defaults to c99 To generate a diff of this commit: cvs rdiff -u -r1.10 -r1.11 pkgsrc/emulators/pcsxr/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688934480119800 Content-Disposition: inline Content-Length: 688 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/emulators/pcsxr/Makefile diff -u pkgsrc/emulators/pcsxr/Makefile:1.10 pkgsrc/emulators/pcsxr/Makefile:1.11 --- pkgsrc/emulators/pcsxr/Makefile:1.10 Sat May 6 19:09:14 2023 +++ pkgsrc/emulators/pcsxr/Makefile Sun Jul 9 20:27:59 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.10 2023/05/06 19:09:14 ryoon Exp $ +# $NetBSD: Makefile,v 1.11 2023/07/09 20:27:59 nia Exp $ DISTNAME= pcsxr-1.9.95.20190306 PKGREVISION= 8 @@ -13,7 +13,8 @@ COMMENT= Sony PlayStation emulator LICENSE= gnu-gpl-v3 USE_TOOLS+= pkg-config -USE_LANGUAGES= c c++ +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES= c99 c++ USE_CMAKE= yes --_----------=_1688934480119800--