From: Adrian Bunk Date: Tue, 19 Jul 2005 21:00:13 +0000 (-0700) Subject: [NET]: BRIDGE_EBT_ARPREPLY must depend on INET X-Git-Tag: v2.6.13-rc4~84^2~14 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=eb3f8f5e22cdee8138e654963e371ad337830efb;p=~emulex%2Finfiniband.git [NET]: BRIDGE_EBT_ARPREPLY must depend on INET BRIDGE_EBT_ARPREPLY=y and INET=n results in the following compile error: net/built-in.o: In function `ebt_target_reply': ebt_arpreply.c:(.text+0x68fb9): undefined reference to `arp_send' make: *** [.tmp_vmlinux1] Error 1 Signed-off-by: Adrian Bunk Signed-off-by: David S. Miller --- diff --git a/net/bridge/netfilter/Kconfig b/net/bridge/netfilter/Kconfig index 68ccef507b4..c70b3be2302 100644 --- a/net/bridge/netfilter/Kconfig +++ b/net/bridge/netfilter/Kconfig @@ -138,7 +138,7 @@ config BRIDGE_EBT_VLAN # config BRIDGE_EBT_ARPREPLY tristate "ebt: arp reply target support" - depends on BRIDGE_NF_EBTABLES + depends on BRIDGE_NF_EBTABLES && INET help This option adds the arp reply target, which allows automatically sending arp replies to arp requests.