From: Jouni Malinen Date: Sun, 16 Dec 2012 10:28:19 +0000 (+0200) Subject: WNM: Fix CONFIG_WNM use in Makefile X-Git-Tag: hostap_2_0~81 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=2dfb9a447c7b71e03d4f4a318b4f8d67244d57d1;p=thirdparty%2Fhostap.git WNM: Fix CONFIG_WNM use in Makefile This code was within ifdef CONFIG_AP and did not get included unless AP mode support was also enabled. Signed-hostap: Jouni Malinen --- diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index c6c76ec8f..b5aaaae5b 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -738,10 +738,6 @@ ifdef CONFIG_IEEE80211N CFLAGS += -DCONFIG_IEEE80211N endif -ifdef CONFIG_WNM -CFLAGS += -DCONFIG_WNM -endif - ifdef NEED_AP_MLME OBJS += ../src/ap/wmm.o OBJS += ../src/ap/ap_list.o @@ -762,6 +758,10 @@ OBJS += ../src/ap/hs20.o endif endif +ifdef CONFIG_WNM +CFLAGS += -DCONFIG_WNM +endif + ifdef NEED_RSN_AUTHENTICATOR CFLAGS += -DCONFIG_NO_RADIUS NEED_AES_WRAP=y