diff options
Diffstat (limited to 'www')
-rw-r--r-- | www/squid/options.mk | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/www/squid/options.mk b/www/squid/options.mk index b5afb2442a2..8a7ce9260ed 100644 --- a/www/squid/options.mk +++ b/www/squid/options.mk @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.6 2005/12/05 23:55:23 rillig Exp $ +# $NetBSD: options.mk,v 1.7 2005/12/23 15:37:41 taca Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.squid -PKG_SUPPORTED_OPTIONS= carp icmp pam-helper snmp ssl aufs unlinkd +PKG_SUPPORTED_OPTIONS= aufs carp icmp pam-helper snmp ssl unlinkd # # most of options are enabled by default except aufs. aufs backend isn't # tested well. @@ -63,7 +63,7 @@ CONFIGURE_ARGS+= --enable-ipf-transparent .endif .if !empty(PKG_OPTIONS:Marp-acl) -CONFIGURE_ARGS+= arp-acl +CONFIGURE_ARGS+= --arp-acl .endif .if !empty(PKG_OPTIONS:Mcarp) @@ -88,6 +88,10 @@ CONFIGURE_ARGS+= --enable-ssl --with-openssl=${SSLBASE:Q} .include "../../security/openssl/buildlink3.mk" .endif +.if !empty(PKG_OPTIONS:Maufs) +SQUID_BACKENDS+= aufs +.endif + .if !empty(PKG_OPTIONS:Mdiskd) SQUID_BACKENDS+= diskd .endif |