diff options
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 84e1d57..c36d201 100644 --- a/configure.ac +++ b/configure.ac @@ -123,9 +123,9 @@ AC_ARG_WITH(systemd, use_systemd=no if test "x$with_systemd" != "xno" ; then - PKG_CHECK_MODULES(SYSTEMD, [libsystemd], [have_systemd=yes], + PKG_CHECK_MODULES(SYSTEMD, [libsystemd], [use_systemd=yes], [PKG_CHECK_MODULES(SYSTEMD, [libsystemd-login >= $SYSTEMD_REQUIRED], - [have_systemd=yes])]) + [use_systemd=yes])]) if test "x$use_systemd" = "xyes"; then AC_DEFINE(HAVE_SYSTEMD, 1, [systemd support]) |