diff options
author | taca <taca@pkgsrc.org> | 2007-02-25 07:34:45 +0000 |
---|---|---|
committer | taca <taca@pkgsrc.org> | 2007-02-25 07:34:45 +0000 |
commit | 2bbe849bee73da9edf335756b017689834f27e3d (patch) | |
tree | 36591a3d3c81131db471deeec9d8378a8a6cdebb /www | |
parent | 2e5dd6dede81feee226271b82af537393169e2af (diff) | |
download | pkgsrc-2bbe849bee73da9edf335756b017689834f27e3d.tar.gz |
Fix build problem with aufs option on DragonFly.
Reported by PR pkg/35656 by Kimura Fuyuki and applied patch from it.
Diffstat (limited to 'www')
-rw-r--r-- | www/squid/MESSAGE.common | 4 | ||||
-rw-r--r-- | www/squid/options.mk | 4 |
2 files changed, 5 insertions, 3 deletions
diff --git a/www/squid/MESSAGE.common b/www/squid/MESSAGE.common index dbe4c68f98a..5314ede3ac3 100644 --- a/www/squid/MESSAGE.common +++ b/www/squid/MESSAGE.common @@ -1,5 +1,5 @@ =========================================================================== -$NetBSD: MESSAGE.common,v 1.1 2003/12/25 16:28:14 taca Exp $ +$NetBSD: MESSAGE.common,v 1.2 2007/02/25 07:34:45 taca Exp $ You DO need running nameservice to start and run ${PKGNAME}. @@ -9,6 +9,6 @@ to use it as a proxy server. Please note that to use the diskd storage method, you'll likely have to change SYSV-IPC parameters in the kernel config file (see -http://www.squid-cache.org/Doc/FAQ/FAQ-22.html for details). +http://wiki.squid-cache.org/SquidFaq/DiskDaemon for details) =========================================================================== diff --git a/www/squid/options.mk b/www/squid/options.mk index afa4144c336..3fd7ee295b4 100644 --- a/www/squid/options.mk +++ b/www/squid/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.11 2007/02/06 20:22:15 joerg Exp $ +# $NetBSD: options.mk,v 1.12 2007/02/25 07:34:45 taca Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.squid PKG_SUPPORTED_OPTIONS= aufs carp icmp pam-helper snmp ssl unlinkd @@ -91,6 +91,8 @@ CONFIGURE_ARGS+= --enable-ssl --with-openssl=${SSLBASE:Q} .if !empty(PKG_OPTIONS:Maufs) SQUID_BACKENDS+= aufs +PTHREAD_AUTO_VARS= yes +.include "../../mk/pthread.buildlink3.mk" .endif .if !empty(PKG_OPTIONS:Mdiskd) |