diff options
author | Jouni Malinen <jouni@qca.qualcomm.com> | 2013-06-07 17:13:25 (GMT) |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2013-06-07 17:13:25 (GMT) |
commit | aa20e1a1fb89d797e9628bbfc12139bda7b55144 (patch) | |
tree | 8b3a6d3ca9e1668c6e49f057feacee584000bfa8 /wpa_supplicant/Makefile | |
parent | 5d5c4ee5e06c3be16c6fb36e2e77e867bd28381e (diff) | |
download | hostap-aa20e1a1fb89d797e9628bbfc12139bda7b55144.zip hostap-aa20e1a1fb89d797e9628bbfc12139bda7b55144.tar.gz hostap-aa20e1a1fb89d797e9628bbfc12139bda7b55144.tar.bz2 |
Remove CONFIG_NO_WPA2 build parameter
There is not much use for enabling WPA without WPA2 nowadays since most
networks have been upgraded to WPA2. Furthermore, the code size savings
from disabling just WPA2 are pretty small, so there is not much
justification for maintaining this build option. Remove it to get rid of
undesired complexity.
Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
Diffstat (limited to 'wpa_supplicant/Makefile')
-rw-r--r-- | wpa_supplicant/Makefile | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/wpa_supplicant/Makefile b/wpa_supplicant/Makefile index 0634219..6280a23 100644 --- a/wpa_supplicant/Makefile +++ b/wpa_supplicant/Makefile @@ -215,7 +215,7 @@ NEED_SHA1=y NEED_MD5=y NEED_RC4=y else -CFLAGS += -DCONFIG_NO_WPA -DCONFIG_NO_WPA2 +CFLAGS += -DCONFIG_NO_WPA endif ifdef CONFIG_IBSS_RSN @@ -265,10 +265,6 @@ CFLAGS += -DCONFIG_INTERWORKING NEED_GAS=y endif -ifdef CONFIG_NO_WPA2 -CFLAGS += -DCONFIG_NO_WPA2 -endif - include ../src/drivers/drivers.mak ifdef CONFIG_AP OBJS_d += $(DRV_BOTH_OBJS) |