From owner-svn-ports-all@FreeBSD.ORG Mon Aug 25 17:54:19 2014 Return-Path: Delivered-To: svn-ports-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [8.8.178.115]) (using TLSv1 with cipher ADH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 4BCA5C48; Mon, 25 Aug 2014 17:54:19 +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 1DEB937E3; Mon, 25 Aug 2014 17:54:19 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id s7PHsIBN038298; Mon, 25 Aug 2014 17:54:18 GMT (envelope-from marino@FreeBSD.org) Received: (from marino@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id s7PHsIra038297; Mon, 25 Aug 2014 17:54:18 GMT (envelope-from marino@FreeBSD.org) Message-Id: <201408251754.s7PHsIra038297@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: marino set sender to marino@FreeBSD.org using -f From: John Marino Date: Mon, 25 Aug 2014 17:54:18 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r366115 - head/www/squid33 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: Mon, 25 Aug 2014 17:54:19 -0000 Author: marino Date: Mon Aug 25 17:54:18 2014 New Revision: 366115 URL: http://svnweb.freebsd.org/changeset/ports/366115 QAT: https://qat.redports.org/buildarchive/r366115/ Log: www/squid33: Clarify option for http-violations The option STRICT_HTTP was highly misleading. If enabled, it disabled strict checking, the opposite of what somebody would reasonably assume. Rename the option to LAX_HTTP and improve the description to ward off potential confusion. PR: 192980 Reported by: screenblack (gmail) Modified: head/www/squid33/Makefile Modified: head/www/squid33/Makefile ============================================================================== --- head/www/squid33/Makefile Mon Aug 25 17:53:26 2014 (r366114) +++ head/www/squid33/Makefile Mon Aug 25 17:54:18 2014 (r366115) @@ -51,9 +51,11 @@ OPTIONS_DEFINE= ARP_ACL AUTH_KERB AUTH_L AUTH_SQL \ CACHE_DIGESTS DEBUG DELAY_POOLS DNS_HELPER ECAP ESI \ FOLLOW_XFF FS_AUFS FS_COSS HTCP ICAP ICMP IDENT IPV6 KQUEUE \ - LARGEFILE SNMP SSL SSL_CRTD STACKTRACES STRICT_HTTP \ + LARGEFILE SNMP SSL SSL_CRTD STACKTRACES LAX_HTTP \ TP_IPF TP_IPFW TP_PF VIA_DB WCCP WCCPV2 DOCS EXAMPLES +OPTIONS_DEFAULT=AUTH_KERB AUTH_NIS FS_AUFS HTCP IDENT KQUEUE SNMP WCCP WCCPV2 + # TODO: # add an option for external_acl/session (requires some kind of external # Berkeley DB support, unsure which one) @@ -83,7 +85,7 @@ SNMP_DESC= Enable SNMP support SSL_CRTD_DESC= Use ssl_crtd to handle SSL cert requests SSL_DESC= Enable SSL gatewaying support STACKTRACES_DESC= Enable automatic backtraces on fatal errors -STRICT_HTTP_DESC= Make Squid strictly HTTP compliant +LAX_HTTP_DESC= Do not enforce strict HTTP compliance TP_IPFW_DESC= Enable transparent proxying with IPFW TP_IPF_DESC= Enable transparent proxying with IPFilter TP_PF_DESC= Enable transparent proxying with PF @@ -91,9 +93,6 @@ VIA_DB_DESC= Enable Forward/Via database WCCPV2_DESC= Enable Web Cache Coordination Protocol v2 WCCP_DESC= Enable Web Cache Coordination Protocol -OPTIONS_DEFAULT= AUTH_KERB AUTH_NIS FS_AUFS HTCP IDENT KQUEUE \ - SNMP WCCP WCCPV2 - ECAP_USES= pkgconfig:build change_files= ChangeLog\ @@ -128,7 +127,7 @@ VIA_DB_CONFIGURE_ENABLE= forw-via-db CACHE_DIGESTS_CONFIGURE_ENABLE= cache-digests WCCP_CONFIGURE_ENABLE= wccp WCCPV2_CONFIGURE_ENABLE= wccpv2 -STRICT_HTTP_CONFIGURE_ENABLE= http-violations +LAX_HTTP_CONFIGURE_ENABLE= http-violations IDENT_CONFIGURE_ENABLE= ident-lookups ARP_ACL_CONFIGURE_ENABLE= eui TP_IPFW_CONFIGURE_ENABLE= ipfw-transparent