From: Jouni Malinen Date: Sun, 10 Mar 2013 16:05:40 +0000 (+0200) Subject: Android: Sync makefile changes for HT/VHT overrides X-Git-Tag: aosp-kk-from-upstream~475 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5139008b5105b40007ae7e83bc469cef39db9fbb;p=thirdparty%2Fhostap.git Android: Sync makefile changes for HT/VHT overrides CONFIG_HT_OVERRIDES and CONFIG_VHT_OVERRIDES were already mentioned in android.config, but Android.mk did not yet know about them. Signed-hostap: Jouni Malinen --- diff --git a/wpa_supplicant/Android.mk b/wpa_supplicant/Android.mk index d08b3f760..0896eec17 100644 --- a/wpa_supplicant/Android.mk +++ b/wpa_supplicant/Android.mk @@ -133,6 +133,14 @@ ifdef CONFIG_EAPOL_TEST L_CFLAGS += -Werror -DEAPOL_TEST endif +ifdef CONFIG_HT_OVERRIDES +L_CFLAGS += -DCONFIG_HT_OVERRIDES +endif + +ifdef CONFIG_VHT_OVERRIDES +L_CFLAGS += -DCONFIG_VHT_OVERRIDES +endif + ifndef CONFIG_BACKEND CONFIG_BACKEND=file endif