Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 46D4784CFE for ; Mon, 10 Jul 2023 08:55:03 +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 iGuGWGTwDNVr for ; Mon, 10 Jul 2023 08:55:02 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 9A2C384CCA for ; Mon, 10 Jul 2023 08:55:02 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 93DF0FBDB; Mon, 10 Jul 2023 08:55:02 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688979302104660" MIME-Version: 1.0 Date: Mon, 10 Jul 2023 08:55:02 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/ham/lpcnetfreedv To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230710085502.93DF0FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688979302104660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Jul 10 08:55:02 UTC 2023 Modified Files: pkgsrc/ham/lpcnetfreedv: Makefile Log Message: lpcnetfreedv: Assumes compiler defaults to c99 To generate a diff of this commit: cvs rdiff -u -r1.1 -r1.2 pkgsrc/ham/lpcnetfreedv/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688979302104660 Content-Disposition: inline Content-Length: 841 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/ham/lpcnetfreedv/Makefile diff -u pkgsrc/ham/lpcnetfreedv/Makefile:1.1 pkgsrc/ham/lpcnetfreedv/Makefile:1.2 --- pkgsrc/ham/lpcnetfreedv/Makefile:1.1 Sun Nov 29 23:12:43 2020 +++ pkgsrc/ham/lpcnetfreedv/Makefile Mon Jul 10 08:55:02 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.1 2020/11/29 23:12:43 dbj Exp $ +# $NetBSD: Makefile,v 1.2 2023/07/10 08:55:02 nia Exp $ # https://github.com/drowe67/LPCNet/archive/v0.2.tar.gz # http://rowetel.com/downloads/deep/lpcnet_191005_v1.0.tgz @@ -17,7 +17,8 @@ HOMEPAGE= https://github.com/drowe67/LPC COMMENT= LPCNet library for use by FreeDV LICENSE= modified-bsd -USE_LANGUAGES= c +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES= c99 USE_TOOLS+= tar pkg-config WRKSRC= ${WRKDIR}/${GITHUB_PROJECT}-${PKGVERSION_NOREV} --_----------=_1688979302104660--