From: Sungbae Yoo Date: Mon, 11 Jun 2018 08:28:41 +0000 (+0900) Subject: Change to require libcrypto instead of openssl X-Git-Tag: submit/tizen_4.0/20180612.012549^2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F47%2F181247%2F2;p=platform%2Fcore%2Fsecurity%2Fode.git Change to require libcrypto instead of openssl This is for a fota issue that openssl can't be used in fota progress Signed-off-by: Sungbae Yoo Change-Id: If619d47f6c823b0560fb44cb7f5467fef5838d3e --- diff --git a/packaging/ode.spec b/packaging/ode.spec index 90279c8..3fbc762 100755 --- a/packaging/ode.spec +++ b/packaging/ode.spec @@ -16,7 +16,7 @@ BuildRequires: pkgconfig(aul) BuildRequires: pkgconfig(bundle) BuildRequires: pkgconfig(libtzplatform-config) BuildRequires: pkgconfig(cynara-client) -BuildRequires: pkgconfig(openssl) +BuildRequires: pkgconfig(libcrypto) BuildRequires: pkgconfig(libsmack) Requires: cryptsetup diff --git a/server/CMakeLists.txt b/server/CMakeLists.txt index 62a4e79..9811434 100644 --- a/server/CMakeLists.txt +++ b/server/CMakeLists.txt @@ -48,7 +48,7 @@ SET(DEPENDENCY klay bundle libtzplatform-config cynara-client - openssl + libcrypto libsmack ) diff --git a/tests/CMakeLists.txt b/tests/CMakeLists.txt index d0d093c..f803395 100755 --- a/tests/CMakeLists.txt +++ b/tests/CMakeLists.txt @@ -36,7 +36,7 @@ ADD_EXECUTABLE(${PROJECT_NAME} ${TEST_SRC}) PKG_CHECK_MODULES(TEST_DEPS REQUIRED klay glib-2.0 gio-2.0 - openssl + libcrypto vconf )