diff options
author | taca <taca> | 2005-06-07 14:19:10 +0000 |
---|---|---|
committer | taca <taca> | 2005-06-07 14:19:10 +0000 |
commit | 47cfa58dbf36aec9312e5df46bd733fc8121aef7 (patch) | |
tree | eb586fd980e844371fabe342392c4dbdfb4f992f /www/squid/options.mk | |
parent | bf24caa7e16dd3f103e519e1bef8236e23bbf016 (diff) | |
download | pkgsrc-47cfa58dbf36aec9312e5df46bd733fc8121aef7.tar.gz |
- Fix build problem with IP Filter prior to 4.0; NetBSD 1.6.2.
- Avoid use of ":ts" modifier of make(1) since NetBSD 1.6.2's make(1)
dosen't support it. It might be fix "diskd" PKG_OPTION problem, too.
- Remove extra "--enable-async-io" configure option.
No PKGREVISION change.
Diffstat (limited to 'www/squid/options.mk')
-rw-r--r-- | www/squid/options.mk | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/www/squid/options.mk b/www/squid/options.mk index 8fe9ea5c808..944c8adf94d 100644 --- a/www/squid/options.mk +++ b/www/squid/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.2 2005/06/06 01:51:13 taca Exp $ +# $NetBSD: options.mk,v 1.3 2005/06/07 14:19:10 taca Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.squid PKG_SUPPORTED_OPTIONS= icmp pam-helper snmp ssl aufs @@ -42,7 +42,7 @@ PKG_SUPPORTED_OPTIONS+= arp-acl .include "../../mk/bsd.options.mk" -SQUID_BACKEND?= ufs,null +SQUID_BACKEND?= ufs null SQUID_BASIC_AUTH_HELPERS?= getpwnam MSNT NCSA YP winbind SQUID_DIGEST_AUTH_HELPERS?= password SQUID_NTLM_AUTH_HELPERS?= fakeauth SMB @@ -89,17 +89,17 @@ SQUID_BACKEND+= diskd .endif .if !empty(SQUID_BASIC_AUTH_HELPERS) -CONFIGURE_ARGS+= --enable-basic-auth-helpers=${SQUID_BASIC_AUTH_HELPERS:ts,} +CONFIGURE_ARGS+= --enable-basic-auth-helpers=${SQUID_BASIC_AUTH_HELPERS:Q} .endif .if !empty(SQUID_DIGEST_AUTH_HELPERS) -CONFIGURE_ARGS+= --enable-digest-auth-helpers=${SQUID_DIGEST_AUTH_HELPERS:ts,} +CONFIGURE_ARGS+= --enable-digest-auth-helpers=${SQUID_DIGEST_AUTH_HELPERS:Q} .endif .if !empty(SQUID_NTLM_AUTH_HELPERS) -CONFIGURE_ARGS+= --enable-ntlm-auth-helpers=${SQUID_NTLM_AUTH_HELPERS:ts,} +CONFIGURE_ARGS+= --enable-ntlm-auth-helpers=${SQUID_NTLM_AUTH_HELPERS:Q} .endif .if !empty(SQUID_EXTERNAL_ACL_HELPERS) -CONFIGURE_ARGS+= --enable-external-acl-helpers=${SQUID_EXTERNAL_ACL_HELPERS:ts,} +CONFIGURE_ARGS+= --enable-external-acl-helpers=${SQUID_EXTERNAL_ACL_HELPERS:Q} .endif |