Android: Use CONFIG_WNM mode consistently

Replace CONFIG_IEEE80211V with CONFIG_WNM to get more consistent build
options for WNM-Sleep Mode operations. This is similar to the Makefile
change in commit ad3872a372.

Signed-hostap: Jouni Malinen <j@w1.fi>
This commit is contained in:
Jouni Malinen 2013-03-17 20:13:46 +02:00
parent 69586aa312
commit ce9283a401
2 changed files with 4 additions and 12 deletions

View file

@ -208,8 +208,8 @@ NEED_ECC=y
NEED_DH_GROUPS=y NEED_DH_GROUPS=y
endif endif
ifdef CONFIG_IEEE80211V ifdef CONFIG_WNM
L_CFLAGS += -DCONFIG_IEEE80211V CFLAGS += -DCONFIG_WNM
OBJS += src/ap/wnm_ap.c OBJS += src/ap/wnm_ap.c
endif endif
@ -217,10 +217,6 @@ ifdef CONFIG_IEEE80211N
L_CFLAGS += -DCONFIG_IEEE80211N L_CFLAGS += -DCONFIG_IEEE80211N
endif endif
ifdef CONFIG_WNM
L_CFLAGS += -DCONFIG_WNM
endif
ifdef CONFIG_IEEE80211AC ifdef CONFIG_IEEE80211AC
L_CFLAGS += -DCONFIG_IEEE80211AC L_CFLAGS += -DCONFIG_IEEE80211AC
endif endif

View file

@ -197,8 +197,8 @@ NEED_ECC=y
NEED_DH_GROUPS=y NEED_DH_GROUPS=y
endif endif
ifdef CONFIG_IEEE80211V ifdef CONFIG_WNM
L_CFLAGS += -DCONFIG_IEEE80211V CFLAGS += -DCONFIG_WNM
OBJS += wnm_sta.c OBJS += wnm_sta.c
endif endif
@ -769,10 +769,6 @@ OBJS += src/ap/hs20.c
endif endif
endif endif
ifdef CONFIG_WNM
L_CFLAGS += -DCONFIG_WNM
endif
ifdef NEED_RSN_AUTHENTICATOR ifdef NEED_RSN_AUTHENTICATOR
L_CFLAGS += -DCONFIG_NO_RADIUS L_CFLAGS += -DCONFIG_NO_RADIUS
NEED_AES_WRAP=y NEED_AES_WRAP=y