Android: Sync Android.mk with Makefile

This brings in commit 411f567050 changes
to allow libdl to be linked in after OpenSSL.

Signed-hostap: Jouni Malinen <jouni@qca.qualcomm.com>
This commit is contained in:
Jouni Malinen 2013-11-08 12:57:19 +02:00 committed by Jouni Malinen
parent 736abfc166
commit 890b3a44cb

View file

@ -942,6 +942,10 @@ OBJS += src/crypto/fips_prf_openssl.c
endif
LIBS += -lcrypto
LIBS_p += -lcrypto
ifdef CONFIG_TLS_ADD_DL
LIBS += -ldl
LIBS_p += -ldl
endif
endif
ifeq ($(CONFIG_TLS), gnutls)