Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 1866584E91 for ; Sat, 1 Jul 2023 14:04:33 +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 B0aNgypGdGO9 for ; Sat, 1 Jul 2023 14:04:32 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 5295084CFD for ; Sat, 1 Jul 2023 14:04:32 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 470B8FA89; Sat, 1 Jul 2023 14:04:32 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1688220272141210" MIME-Version: 1.0 Date: Sat, 1 Jul 2023 14:04:32 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/www/w3m To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230701140432.470B8FA89@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_1688220272141210 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Sat Jul 1 14:04:32 UTC 2023 Modified Files: pkgsrc/www/w3m: Makefile.common Log Message: w3m: assumes compiler defaults to c99 To generate a diff of this commit: cvs rdiff -u -r1.77 -r1.78 pkgsrc/www/w3m/Makefile.common Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1688220272141210 Content-Disposition: inline Content-Length: 824 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/w3m/Makefile.common diff -u pkgsrc/www/w3m/Makefile.common:1.77 pkgsrc/www/w3m/Makefile.common:1.78 --- pkgsrc/www/w3m/Makefile.common:1.77 Wed Jun 21 15:16:15 2023 +++ pkgsrc/www/w3m/Makefile.common Sat Jul 1 14:04:32 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.77 2023/06/21 15:16:15 schmonz Exp $ +# $NetBSD: Makefile.common,v 1.78 2023/07/01 14:04:32 nia Exp $ # # used by www/w3m/Makefile # used by www/w3m-img/Makefile @@ -16,7 +16,8 @@ HOMEPAGE= http://w3m.sourceforge.net/ WRKSRC= ${WRKDIR}/w3m-${W3M_VERS:S/+/-/} GNU_CONFIGURE= yes -USE_LANGUAGES= c c++ +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES= c99 c++ USE_TOOLS+= gmake # Needed for some combinations of options... USE_TOOLS+= msgfmt USE_PKGLOCALEDIR= yes --_----------=_1688220272141210--