From: Jouni Malinen Date: Fri, 2 Sep 2011 13:16:22 +0000 (+0300) Subject: Android: Include libcrypto and libssl only if CONFIG_TLS=openssl X-Git-Tag: hostap-1-bp~246 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=bf9d5518d55e314cad2dbac0715ce151b2807691;p=thirdparty%2Fhostap.git Android: Include libcrypto and libssl only if CONFIG_TLS=openssl --- diff --git a/wpa_supplicant/Android.mk b/wpa_supplicant/Android.mk index 1835dc6c7..8ce24ad9c 100644 --- a/wpa_supplicant/Android.mk +++ b/wpa_supplicant/Android.mk @@ -1386,7 +1386,10 @@ endif ifneq ($(BOARD_WPA_SUPPLICANT_PRIVATE_LIB),) LOCAL_STATIC_LIBRARIES += $(BOARD_WPA_SUPPLICANT_PRIVATE_LIB) endif -LOCAL_SHARED_LIBRARIES := libc libcutils libcrypto libssl +LOCAL_SHARED_LIBRARIES := libc libcutils +ifeq ($(CONFIG_TLS), openssl) +LOCAL_SHARED_LIBRARIES := libcrypto libssl +endif ifdef CONFIG_DRIVER_NL80211 LOCAL_SHARED_LIBRARIES += libnl_2 endif