Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 7B55D84D39 for ; Sun, 9 Jul 2023 13:20:24 +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 3JdojiWk9hSA for ; Sun, 9 Jul 2023 13:20:24 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id D139084D2D for ; Sun, 9 Jul 2023 13:20:23 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id C9971FBDB; Sun, 9 Jul 2023 13:20:23 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688908823221130" MIME-Version: 1.0 Date: Sun, 9 Jul 2023 13:20:23 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/cad/ng-spice To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230709132023.C9971FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688908823221130 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sun Jul 9 13:20:23 UTC 2023 Modified Files: pkgsrc/cad/ng-spice: Makefile.common Log Message: ng-spice: Assumes compiler defaults to c99 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/cad/ng-spice/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688908823221130 Content-Disposition: inline Content-Length: 764 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/cad/ng-spice/Makefile.common diff -u pkgsrc/cad/ng-spice/Makefile.common:1.1 pkgsrc/cad/ng-spice/Makefile.common:1.2 --- pkgsrc/cad/ng-spice/Makefile.common:1.1 Tue Jun 6 09:54:12 2023 +++ pkgsrc/cad/ng-spice/Makefile.common Sun Jul 9 13:20:23 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.1 2023/06/06 09:54:12 bouyer Exp $ +# $NetBSD: Makefile.common,v 1.2 2023/07/09 13:20:23 nia Exp $ # # used by can/ng-spice # used by can/ng-spice-shared @@ -16,7 +16,8 @@ LICENSE= modified-bsd AND gnu-lgpl-v2.1 USE_LIBTOOL= YES USE_TOOLS+= gmake -USE_LANGUAGES= c c++ +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES= c99 c++ GNU_CONFIGURE= YES CONFIGURE_ARGS+= --disable-debug --_----------=_1688908823221130--