Received: from mail.netbsd.org (mail.netbsd.org [199.233.217.200]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client CN "mail.NetBSD.org", Issuer "mail.NetBSD.org CA" (not verified)) by mollari.NetBSD.org (Postfix) with ESMTPS id 3E9481A923E for ; Wed, 21 Oct 2020 19:44:58 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id AF65B84E54; Wed, 21 Oct 2020 19:44:57 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 34FC184D6C for ; Wed, 21 Oct 2020 19:44:57 +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 HJDxjNUaFa-Z for ; Wed, 21 Oct 2020 19:44:56 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8724984D28 for ; Wed, 21 Oct 2020 19:44:56 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 7AAE4FB28; Wed, 21 Oct 2020 19:44:56 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_160330949666970" MIME-Version: 1.0 Date: Wed, 21 Oct 2020 19:44:56 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/devel/blosc To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20201021194456.7AAE4FB28@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_160330949666970 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Oct 21 19:44:56 UTC 2020 Modified Files: pkgsrc/devel/blosc: Makefile Log Message: blosc: Assumes the compiler defaults to c99. Pass -std=c99 with USE_LANGUAGES. To generate a diff of this commit: cvs rdiff -u -r1.13 -r1.14 pkgsrc/devel/blosc/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_160330949666970 Content-Disposition: inline Content-Length: 728 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/devel/blosc/Makefile diff -u pkgsrc/devel/blosc/Makefile:1.13 pkgsrc/devel/blosc/Makefile:1.14 --- pkgsrc/devel/blosc/Makefile:1.13 Wed Sep 9 07:06:56 2020 +++ pkgsrc/devel/blosc/Makefile Wed Oct 21 19:44:56 2020 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.13 2020/09/09 07:06:56 adam Exp $ +# $NetBSD: Makefile,v 1.14 2020/10/21 19:44:56 nia Exp $ DISTNAME= blosc-1.20.1 CATEGORIES= devel @@ -12,7 +12,8 @@ COMMENT= Blocking, shuffling, and lossle LICENSE= modified-bsd USE_CMAKE= yes -USE_LANGUAGES= c c++ +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES= c99 c++ USE_TOOLS+= pkg-config TEST_ENV+= LD_LIBRARY_PATH=${WRKSRC}/blosc TEST_TARGET= test --_----------=_160330949666970--