svn commit: r480908 - in head/www/squid3: . files

Thomas Zander riggs at FreeBSD.org
Sat Sep 29 14:39:17 UTC 2018


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 at utanet.at (patch file)
  Reported by:	riggs
  Approved by:	timp87 at 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


More information about the svn-ports-head mailing list