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 "Postmaster NetBSD.org" (verified OK)) by mollari.NetBSD.org (Postfix) with ESMTPS id 421587A3D8 for ; Thu, 23 Jun 2016 15:10:38 +0000 (UTC) Received: by mail.netbsd.org (Postfix, from userid 605) id E2E0785E77; Thu, 23 Jun 2016 15:10:37 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 749DE85E5C for ; Thu, 23 Jun 2016 15:10:37 +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 05hCSy2B9iRt for ; Thu, 23 Jun 2016 15:10:37 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 0174484C8B for ; Thu, 23 Jun 2016 15:10:37 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id F0EBFFBB5; Thu, 23 Jun 2016 15:10:36 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_146669463682100" MIME-Version: 1.0 Date: Thu, 23 Jun 2016 15:10:36 +0000 From: "Patrick Welche" Subject: CVS commit: pkgsrc/www/squid3 To: pkgsrc-changes@NetBSD.org Reply-To: prlw1@netbsd.org X-Mailer: log_accum Message-Id: <20160623151036.F0EBFFBB5@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: pkgsrc-changes.NetBSD.org Precedence: bulk This is a multi-part message in MIME format. --_----------=_146669463682100 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: prlw1 Date: Thu Jun 23 15:10:36 UTC 2016 Modified Files: pkgsrc/www/squid3: distinfo Added Files: pkgsrc/www/squid3/patches: patch-src_adaptation_ecap_ServiceRep.cc Log Message: Fix non-default, probably unusused so far, ecap option build, after libecap move to C++11. To generate a diff of this commit: cvs rdiff -u -r1.51 -r1.52 pkgsrc/www/squid3/distinfo cvs rdiff -u -r0 -r1.1 \ pkgsrc/www/squid3/patches/patch-src_adaptation_ecap_ServiceRep.cc Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_146669463682100 Content-Disposition: inline Content-Length: 1962 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/www/squid3/distinfo diff -u pkgsrc/www/squid3/distinfo:1.51 pkgsrc/www/squid3/distinfo:1.52 --- pkgsrc/www/squid3/distinfo:1.51 Sun May 8 23:29:19 2016 +++ pkgsrc/www/squid3/distinfo Thu Jun 23 15:10:36 2016 @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.51 2016/05/08 23:29:19 taca Exp $ +$NetBSD: distinfo,v 1.52 2016/06/23 15:10:36 prlw1 Exp $ SHA1 (squid-3.5.19.tar.xz) = 809133b751df9fb5bca07f181b3e2f7df392f761 RMD160 (squid-3.5.19.tar.xz) = ef97ea9eb6273ec8ded8f74860bcfa7675bf1fb1 @@ -10,6 +10,7 @@ SHA1 (patch-compat_debug.h) = a828871704 SHA1 (patch-errors_Makefile.in) = afbac822ac84d5e1734d55fc625e949ae0b85289 SHA1 (patch-src_Makefile.in) = 7233a92a4f6ecc06d88e125f08f7413e0741f3b6 SHA1 (patch-src_SquidNew.cc) = eef6e72e168cf7f40518fab13dc2f55ed0268db9 +SHA1 (patch-src_adaptation_ecap_ServiceRep.cc) = 246bc60bf2b06ddd99cacf59ae99dcbeee7365c2 SHA1 (patch-src_base_TidyPointer.h) = d05017d7db904286afb02600ed3cc2f0f253b939 SHA1 (patch-src_store.cc) = 055d98a59103b02a51876a5c8ffed9514954beb4 SHA1 (patch-tools_Makefile.in) = 3a7678c63a11a35fabef091a3b18e63859f0796f Added files: Index: pkgsrc/www/squid3/patches/patch-src_adaptation_ecap_ServiceRep.cc diff -u /dev/null pkgsrc/www/squid3/patches/patch-src_adaptation_ecap_ServiceRep.cc:1.1 --- /dev/null Thu Jun 23 15:10:36 2016 +++ pkgsrc/www/squid3/patches/patch-src_adaptation_ecap_ServiceRep.cc Thu Jun 23 15:10:36 2016 @@ -0,0 +1,15 @@ +$NetBSD: patch-src_adaptation_ecap_ServiceRep.cc,v 1.1 2016/06/23 15:10:36 prlw1 Exp $ + +http://bugs.squid-cache.org/show_bug.cgi?id=4376 + +--- ./src/adaptation/ecap/ServiceRep.cc.orig 2016-05-08 12:46:35.000000000 +0000 ++++ ./src/adaptation/ecap/ServiceRep.cc +@@ -234,7 +234,7 @@ bool Adaptation::Ecap::ServiceRep::probe + + bool Adaptation::Ecap::ServiceRep::up() const + { +- return theService; ++ return bool(theService); + } + + bool Adaptation::Ecap::ServiceRep::wantsUrl(const String &urlPath) const --_----------=_146669463682100--