diff options
author | Patrick McHardy <kaber@trash.net> | 2007-02-12 11:15:02 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2007-02-12 11:15:02 -0800 |
commit | a3c941b08d73e26af9030d34a73a1992cfff1703 (patch) | |
tree | 8da2c5caf2f197a2bf84bb20563f381c757d61e7 /net/ipv6/netfilter | |
parent | 891350c9d168a7d58a193a67a1d107c23f9c2eb1 (diff) | |
download | linux-stable-a3c941b08d73e26af9030d34a73a1992cfff1703.tar.gz linux-stable-a3c941b08d73e26af9030d34a73a1992cfff1703.tar.bz2 linux-stable-a3c941b08d73e26af9030d34a73a1992cfff1703.zip |
[NETFILTER]: Kconfig: improve dependency handling
Instead of depending on internally needed options and letting users
figure out what is needed, select them when needed:
- IP_NF_IPTABLES, IP_NF_ARPTABLES and IP6_NF_IPTABLES select
NETFILTER_XTABLES
- NETFILTER_XT_TARGET_CONNMARK, NETFILTER_XT_MATCH_CONNMARK and
IP_NF_TARGET_CLUSTERIP select NF_CONNTRACK_MARK
- NETFILTER_XT_MATCH_CONNBYTES selects NF_CT_ACCT
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/netfilter')
-rw-r--r-- | net/ipv6/netfilter/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/ipv6/netfilter/Kconfig b/net/ipv6/netfilter/Kconfig index cd549aea84f0..da07e9a88ee9 100644 --- a/net/ipv6/netfilter/Kconfig +++ b/net/ipv6/netfilter/Kconfig @@ -42,7 +42,8 @@ config IP6_NF_QUEUE config IP6_NF_IPTABLES tristate "IP6 tables support (required for filtering)" - depends on INET && IPV6 && EXPERIMENTAL && NETFILTER_XTABLES + depends on INET && IPV6 && EXPERIMENTAL + select NETFILTER_XTABLES help ip6tables is a general, extensible packet identification framework. Currently only the packet filtering and packet mangling subsystem |