diff options
author | Patrick McHardy <kaber@trash.net> | 2006-12-12 03:27:46 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-13 19:48:18 -0500 |
commit | 3a411355bcf4bf714022420badfec1cd1e2fbd9a (patch) | |
tree | 3183063adefa535a328c56a1a3686fb438fb02bd /net | |
parent | e05135d1550e73f722ae92909f9c9f44b305e9e2 (diff) |
[NETFILTER]: Fix INET=n linking error
Building with INET=n results in
WARNING: "ip_route_output_key" [net/netfilter/nf_conntrack_h323.ko] undefined!
The entire code in net/netfilter is only used for IPv4/IPv6 currently, so
let it depend on INET.
Noticed by Toralf Förster <toralf.foerster@gmx.de>.
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/Kconfig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/net/netfilter/Kconfig b/net/netfilter/Kconfig index 3a66878a1829..1b853c34d301 100644 --- a/net/netfilter/Kconfig +++ b/net/netfilter/Kconfig | |||
@@ -1,5 +1,5 @@ | |||
1 | menu "Core Netfilter Configuration" | 1 | menu "Core Netfilter Configuration" |
2 | depends on NET && NETFILTER | 2 | depends on NET && INET && NETFILTER |
3 | 3 | ||
4 | config NETFILTER_NETLINK | 4 | config NETFILTER_NETLINK |
5 | tristate "Netfilter netlink interface" | 5 | tristate "Netfilter netlink interface" |