Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 7dc5bfcf authored by Christopher Ferris's avatar Christopher Ferris
Browse files

Add libcrypto for users of libstagefright.

libstagefright_rtsp uses some MD5 functions that used to be in bionic,
but it was removed recently. As an initial fix, I statically linked in
libcrypto_static to the libstagefright_rtsp library. However, I think
it's better to modify the single user of this library to link against
the shared libcrypto library.

Change-Id: Iaf2e1aeea32fd8af038f6e77bf58ea7df50d807a
parent d3af4265
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -26,6 +26,7 @@ LOCAL_SRC_FILES:= \
LOCAL_SHARED_LIBRARIES :=       \
    libbinder                   \
    libcamera_client            \
    libcrypto                   \
    libcutils                   \
    liblog                      \
    libdl                       \
+0 −3
Original line number Diff line number Diff line
@@ -26,9 +26,6 @@ LOCAL_C_INCLUDES:= \

LOCAL_MODULE:= libstagefright_rtsp

LOCAL_WHOLE_STATIC_LIBRARIES := \
	libcrypto_static

ifeq ($(TARGET_ARCH),arm)
    LOCAL_CFLAGS += -Wno-psabi
endif