Received: by mail.netbsd.org (Postfix, from userid 605) id 11DF984D57; Sun, 10 Sep 2017 01:49:42 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 966F984D57 for ; Sun, 10 Sep 2017 01:49:41 +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 mCE5JR94JsNH for ; Sun, 10 Sep 2017 01:49:41 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.NetBSD.org [IPv6:2001:470:a085:999:28c:faff:fe03:5984]) by mail.netbsd.org (Postfix) with ESMTP id 2052D84CE0 for ; Sun, 10 Sep 2017 01:49:41 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id 16BE6FA98; Sun, 10 Sep 2017 01:49:41 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1505008181156660" MIME-Version: 1.0 Date: Sun, 10 Sep 2017 01:49:41 +0000 From: "David A. Holland" Subject: CVS commit: pkgsrc/security/sfs To: pkgsrc-changes@NetBSD.org Reply-To: dholland@netbsd.org X-Mailer: log_accum Message-Id: <20170910014941.16BE6FA98@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. --_----------=_1505008181156660 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: dholland Date: Sun Sep 10 01:49:41 UTC 2017 Modified Files: pkgsrc/security/sfs: distinfo pkgsrc/security/sfs/patches: patch-ac Log Message: Fix one set of C++ build errors, but I don't know what to do about the next set. To generate a diff of this commit: cvs rdiff -u -r1.7 -r1.8 pkgsrc/security/sfs/distinfo cvs rdiff -u -r1.2 -r1.3 pkgsrc/security/sfs/patches/patch-ac Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1505008181156660 Content-Disposition: inline Content-Length: 2309 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/security/sfs/distinfo diff -u pkgsrc/security/sfs/distinfo:1.7 pkgsrc/security/sfs/distinfo:1.8 --- pkgsrc/security/sfs/distinfo:1.7 Wed Nov 4 01:18:09 2015 +++ pkgsrc/security/sfs/distinfo Sun Sep 10 01:49:40 2017 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.7 2015/11/04 01:18:09 agc Exp $ +$NetBSD: distinfo,v 1.8 2017/09/10 01:49:40 dholland Exp $ SHA1 (sfs-0.7.2.tar.gz) = 3619afc9b785e4aa41f7cdf202c5b233a6b5fe08 RMD160 (sfs-0.7.2.tar.gz) = 30cd5e21c4f63292ef0f5671720f6036d08e5ff1 @@ -6,7 +6,7 @@ SHA512 (sfs-0.7.2.tar.gz) = 5b46d67053bd Size (sfs-0.7.2.tar.gz) = 1283652 bytes SHA1 (patch-aa) = 32bf5ca41bf588bdd4f2471c727822aac2906472 SHA1 (patch-ab) = 812135658ed2e8e08991eea092a19f843e102f40 -SHA1 (patch-ac) = b5cbcecc97495ced32f03b105c118aaadc006159 +SHA1 (patch-ac) = 11b25ad26d35f51c718bc02b895e668a585c20b8 SHA1 (patch-ad) = 3da13512ed3f6d4b60959cb88807dffcf26cb74e SHA1 (patch-ae) = 80222c0384e5d746d1fce66231c0f35e32a572fd SHA1 (patch-af) = 7e6b1fa9c2ed27e119179332f62c17439ff18cbf Index: pkgsrc/security/sfs/patches/patch-ac diff -u pkgsrc/security/sfs/patches/patch-ac:1.2 pkgsrc/security/sfs/patches/patch-ac:1.3 --- pkgsrc/security/sfs/patches/patch-ac:1.2 Tue Oct 15 14:48:38 2013 +++ pkgsrc/security/sfs/patches/patch-ac Sun Sep 10 01:49:40 2017 @@ -1,4 +1,6 @@ -$NetBSD: patch-ac,v 1.2 2013/10/15 14:48:38 joerg Exp $ +$NetBSD: patch-ac,v 1.3 2017/09/10 01:49:40 dholland Exp $ + +Catch up to C++ standards drift. --- async/ihash.h.orig 2002-05-28 10:29:16.000000000 +0000 +++ async/ihash.h @@ -35,3 +37,28 @@ $NetBSD: patch-ac,v 1.2 2013/10/15 14:48 ; return v; }; +@@ -288,20 +288,20 @@ public: + shash () {} + shash (const E &e, const H &h) : eq (e), hash (h) {} + +- void insert (V *elm) { insert_val (elm, hash (*elm)); } ++ void insert (V *elm) { this->insert_val (elm, hash (*elm)); } + + V *operator[] (const V &k) const { + V *v; +- for (v = lookup_val (hash (k)); ++ for (v = this->lookup_val (hash (k)); + v && !eq (k, *v); +- v = next_val (v)) ++ v = this->next_val (v)) + ; + return v; + } + + V *nextkeq (V *v) { + const V &k = *v; +- while ((v = next_val (v)) && !eq (k, *v)) ++ while ((v = this->next_val (v)) && !eq (k, *v)) + ; + return v; + }; --_----------=_1505008181156660--