systemd: stop using compat libs 76/50276/2
authorPatrick Ohly <patrick.ohly@intel.com>
Tue, 24 Mar 2015 11:54:03 +0000 (04:54 -0700)
committerGerrit Code Review <gerrit@review.vlan103.tizen.org>
Thu, 14 Jan 2016 16:54:36 +0000 (08:54 -0800)
libsystemd-journal and libsystemd-daemon are considered obsolete
in systemd since 2.09 and may not be available (not compiled
by default).

The code works fine with the current libsystemd, so just
use that.

Change-Id: I5a272bc3ad1e93dd3bb5001b537a134a4ef856bc
Signed-off-by: Patrick Ohly <patrick.ohly@intel.com>
src/common/CMakeLists.txt
src/server/CMakeLists.txt

index b3355c2..6b3cbb8 100644 (file)
@@ -3,7 +3,7 @@ SET(COMMON_VERSION ${COMMON_VERSION_MAJOR}.0.2)
 
 PKG_CHECK_MODULES(COMMON_DEP
     REQUIRED
-    libsystemd-journal
+    libsystemd
     libsmack
     db-util
     cynara-admin
index 99c7488..059a3ae 100644 (file)
@@ -1,6 +1,6 @@
 PKG_CHECK_MODULES(SERVER_DEP
     REQUIRED
-    libsystemd-daemon
+    libsystemd
     cynara-client
     )