From owner-svn-ports-all@FreeBSD.ORG Sun Feb 22 15:16:26 2015 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id D658C90E; Sun, 22 Feb 2015 15:16:26 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id C1C44D98; Sun, 22 Feb 2015 15:16:26 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id t1MFGQSH090351; Sun, 22 Feb 2015 15:16:26 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id t1MFGQab090349; Sun, 22 Feb 2015 15:16:26 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201502221516.t1MFGQab090349@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Sun, 22 Feb 2015 15:16:26 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r379611 - in head/www/squid33: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 22 Feb 2015 15:16:26 -0000 Author: marino Date: Sun Feb 22 15:16:25 2015 New Revision: 379611 URL: https://svnweb.freebsd.org/changeset/ports/379611 QAT: https://qat.redports.org/buildarchive/r379611/ Log: www/squid33: Fix [-Werror=logical-not-parentheses] (gcc5) Fix logical evaluation of condition (caught by gcc5) Added: head/www/squid33/files/patch-src_repl_heap_store__repl__heap.cc (contents, props changed) Modified: head/www/squid33/Makefile Modified: head/www/squid33/Makefile ============================================================================== --- head/www/squid33/Makefile Sun Feb 22 15:15:45 2015 (r379610) +++ head/www/squid33/Makefile Sun Feb 22 15:16:25 2015 (r379611) @@ -3,7 +3,7 @@ PORTNAME= squid PORTVERSION= 3.3.${SQUID_STABLE_VER} -PORTREVISION= 2 +PORTREVISION= 3 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/squid33/files/patch-src_repl_heap_store__repl__heap.cc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/squid33/files/patch-src_repl_heap_store__repl__heap.cc Sun Feb 22 15:16:25 2015 (r379611) @@ -0,0 +1,11 @@ +--- src/repl/heap/store_repl_heap.cc.orig 2014-08-27 14:16:59 UTC ++++ src/repl/heap/store_repl_heap.cc +@@ -221,7 +221,7 @@ heap_purgeNext(RemovalPurgeWalker * walk + + try_again: + +- if (!heap_nodes(heap->theHeap) > 0) ++ if (heap_nodes(heap->theHeap) <= 0) + return NULL; /* done */ + + age = heap_peepminkey(heap->theHeap);