aboutsummaryrefslogtreecommitdiffstats
path: root/hostapd
diff options
context:
space:
mode:
authorJouni Malinen <jouni@qca.qualcomm.com>2011-11-16 14:57:40 +0200
committerArik Nemtsov <arik@wizery.com>2012-08-02 13:03:58 +0300
commitdbac6bbeef06512362a9b72c70fe54db22514344 (patch)
tree51766a7111cd9a05752ec36757e4c3d0e11707dd /hostapd
parent5d7bf5ff747aff7da8dc4b0c3f537a0ddaf92b1b (diff)
downloadexternal_wpa_supplicant_8_ti-dbac6bbeef06512362a9b72c70fe54db22514344.zip
external_wpa_supplicant_8_ti-dbac6bbeef06512362a9b72c70fe54db22514344.tar.gz
external_wpa_supplicant_8_ti-dbac6bbeef06512362a9b72c70fe54db22514344.tar.bz2
Android: Do not use separate private lib
The separate private library mechanism used in Android ICS is not very robust when wpa_supplicant/hostapd version changes since the external code is accessing some internal data structures directly. Avoid this type of issues by integrating the private library to be part of wpa_supplicant/hostapd build.
Diffstat (limited to 'hostapd')
-rw-r--r--hostapd/Android.mk3
1 files changed, 2 insertions, 1 deletions
diff --git a/hostapd/Android.mk b/hostapd/Android.mk
index a3132d3..8858b7c 100644
--- a/hostapd/Android.mk
+++ b/hostapd/Android.mk
@@ -824,7 +824,8 @@ ifdef CONFIG_DRIVER_CUSTOM
LOCAL_STATIC_LIBRARIES := libCustomWifi
endif
ifneq ($(BOARD_HOSTAPD_PRIVATE_LIB),)
-LOCAL_STATIC_LIBRARIES += $(BOARD_HOSTAPD_PRIVATE_LIB)
+##Build as part of hostapd build now
+##LOCAL_STATIC_LIBRARIES += $(BOARD_HOSTAPD_PRIVATE_LIB)
endif
LOCAL_SHARED_LIBRARIES := libc libcutils libcrypto libssl
ifdef CONFIG_DRIVER_NL80211