From: Michael Tremer Date: Tue, 23 Jun 2015 22:34:50 +0000 (+0000) Subject: configure: Fix systemd detection X-Git-Url: http://git.ipfire.org/?p=people%2Fms%2Fddns.git;a=commitdiff_plain;h=78694cf1ecac743ce862793e4b821fac379f7a94 configure: Fix systemd detection libsystem-daemon does not exist any more in newer versions of systemd so that we will need to check libsystemd. Signed-off-by: Michael Tremer Signed-off-by: Stefan Schantl --- diff --git a/configure.ac b/configure.ac index 19a3027..9222638 100644 --- a/configure.ac +++ b/configure.ac @@ -77,7 +77,7 @@ AC_ARG_WITH([systemd], ) AS_IF([test "x$with_systemd" != "xno"], - [PKG_CHECK_MODULES(systemd, [libsystemd-daemon], + [PKG_CHECK_MODULES(systemd, [libsystemd], [have_systemd=yes], [have_systemd=no])], [have_systemd=no] )