summaryrefslogtreecommitdiff
path: root/openssl/ssl/Android.mk
diff options
context:
space:
mode:
authorArne Schwabe <arne@rfc2549.org>2012-07-24 21:31:20 +0200
committerArne Schwabe <arne@rfc2549.org>2012-07-24 21:31:20 +0200
commit011bcb7922f5e23a04322f91318704b1e5ab231d (patch)
tree22eff1767c95713020fb26d53595793bbc837dd7 /openssl/ssl/Android.mk
parent3112a0b79549c7915355fe57e24424e2d3f92bb4 (diff)
Build openssl as shared library again, build for all Android ABIs
Diffstat (limited to 'openssl/ssl/Android.mk')
-rw-r--r--openssl/ssl/Android.mk26
1 files changed, 13 insertions, 13 deletions
diff --git a/openssl/ssl/Android.mk b/openssl/ssl/Android.mk
index 87af2f3e..1319d5e1 100644
--- a/openssl/ssl/Android.mk
+++ b/openssl/ssl/Android.mk
@@ -1,5 +1,5 @@
LOCAL_PATH:= $(call my-dir)
-
+
local_c_includes := \
openssl \
openssl/include \
@@ -61,18 +61,18 @@ include $(BUILD_STATIC_LIBRARY)
#######################################
# target shared library
-# include $(CLEAR_VARS)
-# include $(LOCAL_PATH)/../android-config.mk
+include $(CLEAR_VARS)
+include $(LOCAL_PATH)/../android-config.mk
-# ifneq ($(TARGET_ARCH),x86)
-# LOCAL_NDK_VERSION := 5
-# LOCAL_SDK_VERSION := 9
-# endif
-# LOCAL_SRC_FILES += $(local_src_files)
-# LOCAL_C_INCLUDES += $(local_c_includes)
-# LOCAL_SHARED_LIBRARIES += libcrypto
-# LOCAL_MODULE_TAGS := optional
-# LOCAL_MODULE:= libssl
-# include $(BUILD_SHARED_LIBRARY)
+ifneq ($(TARGET_ARCH),x86)
+LOCAL_NDK_VERSION := 5
+LOCAL_SDK_VERSION := 9
+endif
+LOCAL_SRC_FILES += $(local_src_files)
+LOCAL_C_INCLUDES += $(local_c_includes)
+LOCAL_SHARED_LIBRARIES += libcrypto
+LOCAL_MODULE_TAGS := optional
+LOCAL_MODULE:= libssl
+include $(BUILD_SHARED_LIBRARY)