From: Jouni Malinen Date: Tue, 25 Nov 2014 15:06:54 +0000 (+0200) Subject: Android: Add Hotspot 2.0 into hostapd makefile X-Git-Tag: hostap_2_4~1028 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=378dec5af962db4ef9bf2b18f11dc98f7aab45b9;p=thirdparty%2Fhostap.git Android: Add Hotspot 2.0 into hostapd makefile This makes the Android.mk for hostapd match the Makefile changes for optional Hotspot 2.0 support. Signed-off-by: Jouni Malinen --- diff --git a/hostapd/Android.mk b/hostapd/Android.mk index a6cb8d0ae..d6d04c5f5 100644 --- a/hostapd/Android.mk +++ b/hostapd/Android.mk @@ -201,6 +201,11 @@ endif ifdef CONFIG_HS20 NEED_AES_OMAC1=y +CONFIG_PROXYARP=y +endif + +ifdef CONFIG_PROXYARP +CONFIG_L2_PACKET=y endif ifdef CONFIG_SUITEB @@ -861,6 +866,15 @@ OBJS += src/common/gas.c OBJS += src/ap/gas_serv.c endif +ifdef CONFIG_PROXYARP +L_CFLAGS += -DCONFIG_PROXYARP +OBJS += src/ap/x_snoop.c +OBJS += src/ap/dhcp_snoop.c +ifdef CONFIG_IPV6 +OBJS += src/ap/ndisc_snoop.c +endif +endif + OBJS += src/drivers/driver_common.c ifdef CONFIG_ACS