summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMonsta <[email protected]>2015-10-05 16:30:14 +0300
committerMonsta <[email protected]>2015-10-05 16:30:14 +0300
commit6d4a81780e3598435b565569e8e16f1410cb5761 (patch)
tree890e940d1d91818ab461e310194cab7b1f299ae9
parent95b8f96ad66ab555c763dafebac8a49b9c6f3d51 (diff)
downloadmate-screensaver-6d4a81780e3598435b565569e8e16f1410cb5761.tar.bz2
mate-screensaver-6d4a81780e3598435b565569e8e16f1410cb5761.tar.xz
fix build w/o systemd support
fixes https://github.com/mate-desktop/mate-screensaver/issues/83
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 87ab770..3801199 100644
--- a/configure.ac
+++ b/configure.ac
@@ -935,8 +935,8 @@ AC_ARG_WITH(systemd,
[with_systemd=$withval], [with_systemd=auto])
PKG_CHECK_MODULES(SYSTEMD, [libsystemd], [have_systemd=yes],
- [PKG_CHECK_MODULES(SYSTEMD, [libsystemd-login >= $SYSTEMD_REQUIRED],
- [have_systemd=yes])])
+ [PKG_CHECK_MODULES(SYSTEMD, [libsystemd-login],
+ [have_systemd=yes], [have_systemd=no])])
if test "x$with_systemd" = "xauto" ; then
if test x$have_systemd = xno ; then