From 39b5541864cbd2ebd4efea1bcfa49dcda9291238 Mon Sep 17 00:00:00 2001 From: Sungbae Yoo Date: Mon, 11 Jun 2018 17:28:41 +0900 Subject: [PATCH] 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 --- packaging/ode.spec | 2 +- server/CMakeLists.txt | 2 +- tests/CMakeLists.txt | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) 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 ) -- 2.7.4