Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 360A684FCC for ; Wed, 19 Jul 2023 14:55:07 +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 jIuxxAp2Phmj for ; Wed, 19 Jul 2023 14:55:06 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 8BB1584E76 for ; Wed, 19 Jul 2023 14:55:06 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 89055FBDB; Wed, 19 Jul 2023 14:55:06 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_16897785062070" MIME-Version: 1.0 Date: Wed, 19 Jul 2023 14:55:06 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/security/xmlsec1 To: pkgsrc-changes@NetBSD.org Approved: commit_and_comment Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20230719145506.89055FBDB@cvs.NetBSD.org> This is a multi-part message in MIME format. --_----------=_16897785062070 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Wed Jul 19 14:55:06 UTC 2023 Modified Files: pkgsrc/security/xmlsec1: Makefile Log Message: xmlsec1: Assumes compiler defaults to c99. To generate a diff of this commit: cvs rdiff -u -r1.42 -r1.43 pkgsrc/security/xmlsec1/Makefile Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_16897785062070 Content-Disposition: inline Content-Length: 739 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/xmlsec1/Makefile diff -u pkgsrc/security/xmlsec1/Makefile:1.42 pkgsrc/security/xmlsec1/Makefile:1.43 --- pkgsrc/security/xmlsec1/Makefile:1.42 Wed Apr 19 08:08:42 2023 +++ pkgsrc/security/xmlsec1/Makefile Wed Jul 19 14:55:06 2023 @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.42 2023/04/19 08:08:42 adam Exp $ +# $NetBSD: Makefile,v 1.43 2023/07/19 14:55:06 nia Exp $ # DISTNAME= xmlsec1-1.2.33 @@ -16,6 +16,9 @@ USE_TOOLS+= pkg-config USE_PKGLOCALEDIR= yes USE_LIBTOOL= yes +# error: 'for' loop initial declarations are only allowed in C99 mode +USE_LANGUAGES= c99 + PKGCONFIG_OVERRIDE+= xmlsec-gcrypt.pc.in PKGCONFIG_OVERRIDE+= xmlsec-gnutls.pc.in PKGCONFIG_OVERRIDE+= xmlsec-nss.pc.in --_----------=_16897785062070--