Pull in a dependency on ALQ if it's compiled with IEEE80211_ALQ.

This commit is contained in:
Adrian Chadd 2012-03-16 23:08:13 +00:00
parent bb197d4e46
commit a284b01037
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=233050

View File

@ -827,3 +827,7 @@ static moduledata_t wlan_mod = {
DECLARE_MODULE(wlan, wlan_mod, SI_SUB_DRIVERS, SI_ORDER_FIRST);
MODULE_VERSION(wlan, 1);
MODULE_DEPEND(wlan, ether, 1, 1, 1);
#ifdef IEEE80211_ALQ
MODULE_DEPEND(wlan, alq, 1, 1, 1);
#endif /* IEEE80211_ALQ */