diff options
author | tron <tron> | 2007-11-07 08:57:10 +0000 |
---|---|---|
committer | tron <tron> | 2007-11-07 08:57:10 +0000 |
commit | e822792de58366a828032a882498825c21ad9ce0 (patch) | |
tree | 9e7391e24f8114615486df49be129f6269a9c7e7 /mail | |
parent | 32eb674b058eab95487b538be2e6111705e3090b (diff) | |
download | pkgsrc-e822792de58366a828032a882498825c21ad9ce0.tar.gz |
Remove "inet6" option. The "configure" script doesn't recognize
"--enable-inet6" or "--disble-inet6 anymore and decides automatically
whether to enable IPv6 support.
Pointed out by Matthias Andree in private e-mail.
Diffstat (limited to 'mail')
-rw-r--r-- | mail/fetchmail/options.mk | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/mail/fetchmail/options.mk b/mail/fetchmail/options.mk index c304cd60949..35d9d1ab39a 100644 --- a/mail/fetchmail/options.mk +++ b/mail/fetchmail/options.mk @@ -1,7 +1,7 @@ -# $NetBSD: options.mk,v 1.14 2005/12/05 23:55:10 rillig Exp $ +# $NetBSD: options.mk,v 1.15 2007/11/07 08:57:10 tron Exp $ PKG_OPTIONS_VAR= PKG_OPTIONS.fetchmail -PKG_SUPPORTED_OPTIONS= inet6 kerberos4 kerberos gssapi ssl +PKG_SUPPORTED_OPTIONS= kerberos4 kerberos gssapi ssl PKG_OPTIONS_OPTIONAL_GROUPS= socks PKG_OPTIONS_GROUP.socks= socks4 socks5 @@ -10,13 +10,6 @@ PKG_SUGGESTED_OPTIONS= ssl .include "../../mk/bsd.options.mk" ### -### IPv6 support. -### -.if !empty(PKG_OPTIONS:Minet6) -CONFIGURE_ARGS+= --enable-inet6 -.endif - -### ### Authentication via GSSAPI (currently only over Kerberos V) support. ### .if !empty(PKG_OPTIONS:Mgssapi) |