From: Junghyun Yeon Date: Mon, 5 Sep 2016 02:19:03 +0000 (+0900) Subject: add libsystemd-journal in spec file explicitly X-Git-Tag: accepted/tizen/common/20160905.171424^0 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=refs%2Fchanges%2F93%2F86793%2F3;p=platform%2Fcore%2Fappfw%2Fapp-installers.git add libsystemd-journal in spec file explicitly Change-Id: I1597418706e9ac2dc724a159463f55d41cf15e55 Signed-off-by: Junghyun Yeon --- diff --git a/CMakeLists.txt b/CMakeLists.txt index 39d2f1d..2acdfef 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -61,6 +61,7 @@ PKG_CHECK_MODULES(APP2SD_DEPS REQUIRED app2sd) PKG_CHECK_MODULES(CAPI_SYSTEM_INFO_DEPS REQUIRED capi-system-info) PKG_CHECK_MODULES(VCONF_DEPS REQUIRED vconf vconf-internal-keys) PKG_CHECK_MODULES(STORAGE_DEPS REQUIRED storage) +PKG_CHECK_MODULES(LIBSYSTEMD_DEPS REQUIRED libsystemd) FIND_PACKAGE(Boost REQUIRED COMPONENTS system filesystem regex program_options) FIND_PACKAGE(GTest REQUIRED) diff --git a/packaging/app-installers.spec b/packaging/app-installers.spec index 094c7f4..e510377 100644 --- a/packaging/app-installers.spec +++ b/packaging/app-installers.spec @@ -38,6 +38,7 @@ BuildRequires: pkgconfig(capi-system-info) BuildRequires: pkgconfig(vconf) BuildRequires: pkgconfig(vconf-internal-keys) BuildRequires: pkgconfig(storage) +BuildRequires: pkgconfig(libsystemd) Requires: ca-certificates-tizen Requires: libtzplatform-config diff --git a/src/common/CMakeLists.txt b/src/common/CMakeLists.txt index 1ba13da..b53ea75 100644 --- a/src/common/CMakeLists.txt +++ b/src/common/CMakeLists.txt @@ -126,6 +126,7 @@ APPLY_PKG_CONFIG(${TARGET_LIBNAME_COMMON} PUBLIC APP2SD_DEPS CAPI_SYSTEM_INFO_DEPS STORAGE_DEPS + LIBSYSTEMD_DEPS Boost )