pkgsrc-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[pkgsrc/trunk]: pkgsrc/www/squid I forgot to update transparent proxy related...
details: https://anonhg.NetBSD.org/pkgsrc/rev/029a6c3feec0
branches: trunk
changeset: 548810:029a6c3feec0
user: taca <taca%pkgsrc.org@localhost>
date: Fri Oct 24 14:14:53 2008 +0000
description:
I forgot to update transparent proxy related options' processing and
these options were no effect. So, fix these options' processing.
Noted by Greg Kerr via private mail and much thanks to him.
diffstat:
www/squid/options.mk | 12 ++++++------
1 files changed, 6 insertions(+), 6 deletions(-)
diffs (30 lines):
diff -r 4c746ba94654 -r 029a6c3feec0 www/squid/options.mk
--- a/www/squid/options.mk Fri Oct 24 13:25:50 2008 +0000
+++ b/www/squid/options.mk Fri Oct 24 14:14:53 2008 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: options.mk,v 1.14 2008/09/12 14:59:52 taca Exp $
+# $NetBSD: options.mk,v 1.15 2008/10/24 14:14:53 taca Exp $
PKG_OPTIONS_VAR= PKG_OPTIONS.squid
PKG_SUPPORTED_OPTIONS= snmp ssl \
@@ -78,15 +78,15 @@
#
# squid's code has preference as:
-# ipf-transparent > pf-transparent > linux-netfilter
+# squid-ipf > squid-pf > squid-netfilter
# So, options.mk introduce preference as:
-# linux-netfilter > pf-transparnet > ipf-transparent
+# squid-netfilter > squid-pf > squid-ipf
#
-.if !empty(PKG_OPTIONS:Mlinux-netfilter)
+.if !empty(PKG_OPTIONS:Msquid-netfilter)
CONFIGURE_ARGS+= --enable-linux-netfilter
-.elif !empty(PKG_OPTIONS:Mpf-transparent)
+.elif !empty(PKG_OPTIONS:Msquid-pf)
CONFIGURE_ARGS+= --enable-pf-transparent
-.elif !empty(PKG_OPTIONS:Mipf-transparent)
+.elif !empty(PKG_OPTIONS:Msquid-ipf)
CONFIGURE_ARGS+= --enable-ipf-transparent
.endif
Home |
Main Index |
Thread Index |
Old Index