diff options
author | tron <tron@pkgsrc.org> | 2010-06-24 07:51:37 +0000 |
---|---|---|
committer | tron <tron@pkgsrc.org> | 2010-06-24 07:51:37 +0000 |
commit | 0bb4d740324ecce845217333bcbe00db233e9f3d (patch) | |
tree | a9ae03fa6be7d0213a75c63b4cd5a931ad768849 /www/squid | |
parent | 8c78b55f8facb0a4f78819831a0e18df4ca3652d (diff) | |
download | pkgsrc-0bb4d740324ecce845217333bcbe00db233e9f3d.tar.gz |
Fix botched Squid version check. The "inet6" option is now only available
for the "squid31" package as intented.
Diffstat (limited to 'www/squid')
-rw-r--r-- | www/squid/options.mk | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/www/squid/options.mk b/www/squid/options.mk index e4fb2e75a33..f8f05b21502 100644 --- a/www/squid/options.mk +++ b/www/squid/options.mk @@ -1,4 +1,4 @@ -# $NetBSD: options.mk,v 1.18 2010/06/23 10:39:28 sborrill Exp $ +# $NetBSD: options.mk,v 1.19 2010/06/24 07:51:37 tron Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.squid PKG_SUPPORTED_OPTIONS= snmp ssl \ @@ -28,7 +28,8 @@ PKG_SUGGESTED_OPTIONS= squid-carp snmp ssl squid-pam-helper squid-unlinkd # # Squid 3.1 and above include IPv6 support -.if empty(PKGNAME:Msquid=3.[1-9]*.[0-9]*) +# +.if empty(PKGNAME:Msquid-[0-2].*) && empty(PKGNAME:Msquid-3.0.*) PKG_SUPPORTED_OPTIONS+= inet6 PKG_SUGGESTED_OPTIONS+= inet6 .endif |