diff options
author | Patrick McHardy <kaber@trash.net> | 2005-07-19 13:58:40 -0700 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2005-07-19 13:58:40 -0700 |
commit | 6aef4fdfeaec5f2c66415f2cafa98a3ff927501f (patch) | |
tree | fc8fa275747dfeea29642e37103614dc1754440d /net | |
parent | 86cf42e4e029b83110cf98692420239103363dbf (diff) |
[NET]: Only build flow.o if CONFIG_XFRM=y
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/core/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/net/core/Makefile b/net/core/Makefile index 5e0c56b7f60..f5f5e58943e 100644 --- a/net/core/Makefile +++ b/net/core/Makefile @@ -7,9 +7,10 @@ obj-y := sock.o request_sock.o skbuff.o iovec.o datagram.o stream.o scm.o \ obj-$(CONFIG_SYSCTL) += sysctl_net_core.o -obj-y += flow.o dev.o ethtool.o dev_mcast.o dst.o \ +obj-y += dev.o ethtool.o dev_mcast.o dst.o \ neighbour.o rtnetlink.o utils.o link_watch.o filter.o +obj-$(CONFIG_XFRM) += flow.o obj-$(CONFIG_SYSFS) += net-sysfs.o obj-$(CONFIG_NETFILTER) += netfilter.o obj-$(CONFIG_NET_DIVERT) += dv.o |