From: Jouni Malinen Date: Sun, 6 Dec 2009 17:50:40 +0000 (+0200) Subject: Add support for building IEEE 802.11n support into wpa_supplicant AP X-Git-Tag: hostap_0_7_1~380 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=803a811b7357881eea151bbde83928c012ce0a8e;p=thirdparty%2Fhostap.git Add support for building IEEE 802.11n support into wpa_supplicant AP --- diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 655039a29..5f495de29 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -589,12 +589,19 @@ OBJS += ../src/eap_server/eap.o OBJS += ../src/eap_server/eap_identity.o OBJS += ../src/eap_server/eap_methods.o +ifdef CONFIG_IEEE80211N +CFLAGS += -DCONFIG_IEEE80211N +endif + ifdef NEED_AP_MLME OBJS += ../hostapd/beacon.o OBJS += ../hostapd/wme.o OBJS += ../hostapd/ap_list.o OBJS += ../hostapd/ieee802_11.o OBJS += ../hostapd/hw_features.o +ifdef CONFIG_IEEE80211N +OBJS += ../hostapd/ieee802_11_ht.o +endif CFLAGS += -DNEED_AP_MLME endif ifdef CONFIG_WPS