X-Git-Url: https://git.librecmc.org/?a=blobdiff_plain;ds=sidebyside;f=package%2Fnetwork%2Fservices%2Fhostapd%2Fsrc%2Fsrc%2Futils%2Fbuild_features.h;h=315804361ce13aa9a8508e6d7cdae3c87a44a970;hb=b1426a23c685ce07995988682b5421556f104367;hp=ffbb7978d9e0d6e7c58f1c0cd6e3a3f041cb9f25;hpb=beb90a6a1137e8348991743861a0f10dc65ec5d7;p=librecmc%2Flibrecmc.git diff --git a/package/network/services/hostapd/src/src/utils/build_features.h b/package/network/services/hostapd/src/src/utils/build_features.h index ffbb7978d9..315804361c 100644 --- a/package/network/services/hostapd/src/src/utils/build_features.h +++ b/package/network/services/hostapd/src/src/utils/build_features.h @@ -3,13 +3,25 @@ static inline int has_feature(const char *feat) { -#ifdef IEEE8021X_EAPOL +#if defined(IEEE8021X_EAPOL) || (defined(HOSTAPD) && !defined(CONFIG_NO_RADIUS)) if (!strcmp(feat, "eap")) return 1; #endif -#ifdef IEEE80211N +#ifdef CONFIG_IEEE80211N if (!strcmp(feat, "11n")) return 1; +#endif +#ifdef CONFIG_IEEE80211AC + if (!strcmp(feat, "11ac")) + return 1; +#endif +#ifdef CONFIG_IEEE80211R + if (!strcmp(feat, "11r")) + return 1; +#endif +#ifdef CONFIG_IEEE80211W + if (!strcmp(feat, "11w")) + return 1; #endif return 0; }