summaryrefslogtreecommitdiffstats
path: root/minadbd
diff options
context:
space:
mode:
authorEthan Yonker <dees_troy@teamw.in>2016-09-15 21:48:29 +0200
committerEthan Yonker <dees_troy@teamw.in>2016-09-15 21:57:39 +0200
commit99af7666682234f0a75f9ee7d0005c0535704e92 (patch)
tree10ab92939ac03954491c7bc2d85458fa304492ce /minadbd
parentClean up PartitionSettings (diff)
downloadandroid_bootable_recovery-99af7666682234f0a75f9ee7d0005c0535704e92.tar
android_bootable_recovery-99af7666682234f0a75f9ee7d0005c0535704e92.tar.gz
android_bootable_recovery-99af7666682234f0a75f9ee7d0005c0535704e92.tar.bz2
android_bootable_recovery-99af7666682234f0a75f9ee7d0005c0535704e92.tar.lz
android_bootable_recovery-99af7666682234f0a75f9ee7d0005c0535704e92.tar.xz
android_bootable_recovery-99af7666682234f0a75f9ee7d0005c0535704e92.tar.zst
android_bootable_recovery-99af7666682234f0a75f9ee7d0005c0535704e92.zip
Diffstat (limited to 'minadbd')
-rw-r--r--minadbd/Android.mk10
1 files changed, 9 insertions, 1 deletions
diff --git a/minadbd/Android.mk b/minadbd/Android.mk
index ef5994539..3d675dda5 100644
--- a/minadbd/Android.mk
+++ b/minadbd/Android.mk
@@ -23,7 +23,15 @@ LOCAL_CFLAGS := $(minadbd_cflags)
LOCAL_CONLY_FLAGS := -Wimplicit-function-declaration
LOCAL_C_INCLUDES := $(LOCAL_PATH)/.. system/core/adb
LOCAL_WHOLE_STATIC_LIBRARIES := libadbd
-LOCAL_SHARED_LIBRARIES := libbase liblog libcutils libc libcrypto
+LOCAL_SHARED_LIBRARIES := libbase liblog libcutils libc
+
+ifeq ($(shell test $(PLATFORM_SDK_VERSION) -lt 24; echo $$?),0)
+ LOCAL_C_INCLUDES += $(LOCAL_PATH)/libmincrypt/includes
+ LOCAL_SHARED_LIBRARIES += libmincrypttwrp
+ LOCAL_CFLAGS += -DUSE_MINCRYPT
+else
+ LOCAL_SHARED_LIBRARIES += libcrypto
+endif
include $(BUILD_SHARED_LIBRARY)