diff options
author | bz <bz@FreeBSD.org> | 2009-06-08 19:57:35 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2009-06-08 19:57:35 +0000 |
commit | b7ff2bdc204ec5e815f8123552bb0bee31638f8e (patch) | |
tree | 536b4d1a8634a3cd973f0d7a5ca23ef93ec76029 /sys/modules/wlan | |
parent | 76bed24408b9f5914c9baaeb5a369e4495450a5c (diff) | |
download | FreeBSD-src-b7ff2bdc204ec5e815f8123552bb0bee31638f8e.zip FreeBSD-src-b7ff2bdc204ec5e815f8123552bb0bee31638f8e.tar.gz |
After r193232 rt_tables in vnet.h are no longer indirectly dependent on
the ROUTETABLES kernel option thus there is no need to include opt_route.h
anymore in all consumers of vnet.h and no longer depend on it for module
builds.
Remove the hidden include in flowtable.h as well and leave the two
explicit #includes in ip_input.c and ip_output.c.
Diffstat (limited to 'sys/modules/wlan')
-rw-r--r-- | sys/modules/wlan/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/sys/modules/wlan/Makefile b/sys/modules/wlan/Makefile index bc39c29..c5c788a 100644 --- a/sys/modules/wlan/Makefile +++ b/sys/modules/wlan/Makefile @@ -10,8 +10,7 @@ SRCS= ieee80211.c ieee80211_crypto.c ieee80211_crypto_none.c ieee80211_dfs.c \ ieee80211_radiotap.c ieee80211_regdomain.c ieee80211_ht.c \ ieee80211_adhoc.c ieee80211_hostap.c ieee80211_monitor.c \ ieee80211_sta.c ieee80211_wds.c ieee80211_ddb.c -SRCS+= bus_if.h device_if.h opt_inet.h opt_ipx.h opt_wlan.h opt_ddb.h \ - opt_route.h +SRCS+= bus_if.h device_if.h opt_inet.h opt_ipx.h opt_wlan.h opt_ddb.h .if !defined(KERNBUILDDIR) opt_wlan.h: |