diff options
author | taca <taca@pkgsrc.org> | 2005-12-23 15:37:41 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2005-12-23 15:37:41 +0000 |
commit | 3df9b5e52f65f070ab3d1b12c5963d294752873e (patch) | |
tree | e5bcd423f548c2b929f6da8ed1a71efb66637ac1 /www | |
parent | 3925481e1bacfad99f4d3b36724f81f88a4039bc (diff) | |
download | pkgsrc-3df9b5e52f65f070ab3d1b12c5963d294752873e.tar.gz |
- Sort PKG_SUPPORTED_OPTIONS.
- Fix configure's artument to meet "arp-acl" PKG_OPTION.
- Make "aufs" PKG_OPTION really work which noted by PR pkg/32314 from
Wolfgang Stukenbrock.
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 |