From: Masashi Honma Date: Sun, 23 May 2010 09:12:40 +0000 (+0300) Subject: Fix: AP mode wpa_supplicant build X-Git-Tag: hostap-1-bp~1301 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=37a86b7b36acec732b508c5b38fe0480082fbeb2;p=thirdparty%2Fhostap.git Fix: AP mode wpa_supplicant build The wpa_supplicant compilation with CONFIG_AP option and without CONFIG_IEEE80211R, CONFIG_WPS, NEED_SME, CONFIG_CLIENT_MLME options results in following messages. ../src/ap/drv_callbacks.o: In function `hostapd_notif_assoc': ../src/ap/drv_callbacks.c:59: undefined reference to `ieee802_11_parse_elems' gmake: *** [wpa_supplicant] Error 1 --- diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 56e514323..bdfa303c8 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -582,6 +582,7 @@ endif endif ifdef CONFIG_AP +NEED_80211_COMMON=y NEED_RSN_AUTHENTICATOR=y CFLAGS += -DCONFIG_AP OBJS += ap.o