From c25dc7d7c8f07edda8985cf6f868585d1255015d Mon Sep 17 00:00:00 2001 From: dliakh Date: Thu, 5 Jan 2017 00:45:57 +0200 Subject: [PATCH] Fix an obsolete dependency libsystemd-daemon The libsystemd-daemon component referred to from within configure.ac is not available in Ubuntu Trusty which is referenced as a recommended platform for building the project. The replacement component is libsystemd. I'm not completely sure that the required minimal version number of 37 is still relevant, the libsystemd version on my Trusty machine reported by pkg-config is 229 which is way higher that the mentioned 37. Build successfully completes after the change. The 'check' make target does not, but that's a different story. https://at.projects.genivi.org/jira/browse/NSM-1 --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 50165fe..fcc5b1b 100644 --- a/configure.ac +++ b/configure.ac @@ -44,7 +44,7 @@ PKG_CHECK_MODULES([GIO_UNIX], [gio-unix-2.0 >= 2.30.0]) PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.30.0]) PKG_CHECK_MODULES([GOBJECT], [gobject-2.0 >= 2.30.0]) PKG_CHECK_MODULES([DBUS], [dbus-1 >= 1.4.10]) -PKG_CHECK_MODULES([SYSTEMD], [libsystemd-daemon >= 37 ]) +PKG_CHECK_MODULES([SYSTEMD], [libsystemd >= 37 ]) PKG_CHECK_MODULES([PCL], [persistence_client_library >= 0.6.0 ]) # Choose NodeStateMachine