Date: Sat, 29 Sep 2018 14:39:16 +0000 (UTC) From: Thomas Zander <riggs@FreeBSD.org> To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r480908 - in head/www/squid3: . files Message-ID: <201809291439.w8TEdGrM034384@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: riggs Date: Sat Sep 29 14:39:16 2018 New Revision: 480908 URL: https://svnweb.freebsd.org/changeset/ports/480908 Log: Fix build with ECAP OPTION PR: 231631 Submitted by: w.schwarzenfeld@utanet.at (patch file) Reported by: riggs Approved by: timp87@gmail.com (maintainer) Added: head/www/squid3/files/patch-ServiceRep.cc (contents, props changed) Modified: head/www/squid3/Makefile Modified: head/www/squid3/Makefile ============================================================================== --- head/www/squid3/Makefile Sat Sep 29 13:37:37 2018 (r480907) +++ head/www/squid3/Makefile Sat Sep 29 14:39:16 2018 (r480908) @@ -2,6 +2,7 @@ PORTNAME= squid PORTVERSION= 3.5.28 +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= http://www.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \ http://www2.us.squid-cache.org/Versions/v3/${PORTVERSION:R}/ \ Added: head/www/squid3/files/patch-ServiceRep.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/squid3/files/patch-ServiceRep.cc Sat Sep 29 14:39:16 2018 (r480908) @@ -0,0 +1,11 @@ +--- src/adaptation/ecap/ServiceRep.cc.orig 2018-09-24 18:34:06 UTC ++++ 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201809291439.w8TEdGrM034384>