From 5d247692f615ee7dba632447d3b7bdfa551edbd4 Mon Sep 17 00:00:00 2001 From: Jouni Malinen Date: Sun, 16 Dec 2012 19:31:36 +0200 Subject: [PATCH] Fix wpa_supplicant CONFIG_AP=y build with WNM enabled Signed-hostap: Jouni Malinen --- wpa_supplicant/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index bafeccccc..52962d145 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -725,6 +725,9 @@ OBJS += ../src/ap/eap_user_db.o ifdef CONFIG_IEEE80211N OBJS += ../src/ap/ieee802_11_ht.o endif +ifdef CONFIG_WNM +OBJS += ../src/ap/wnm_ap.o +endif ifdef CONFIG_CTRL_IFACE OBJS += ../src/ap/ctrl_iface_ap.o endif