]> rtime.felk.cvut.cz Git - sojka/lightdm.git/blobdiff - configure.ac
Define LOGIND_RUNNING from the configure script
[sojka/lightdm.git] / configure.ac
index bbc25b67dfd29719556fadac5529c911ff1a1788..1a6dc9637e5f6f5b43ab6a90aa9965e33214bbbe 100644 (file)
@@ -179,6 +179,8 @@ AM_CONDITIONAL(ENABLE_CONSOLEKIT, test x$enable_consolekit = xyes)
 
 if test x$enable_consolekit = xyes; then
   AC_DEFINE(WITH_CONSOLEKIT, 1, [Define if ConsoleKit support is enabled])
+  AC_DEFINE(LOGIND_RUNNING(), 0,
+                     [Define to a check for whether the system is running logind])
 fi
 
 AC_ARG_ENABLE(logind,
@@ -189,6 +191,8 @@ AM_CONDITIONAL(ENABLE_LOGIND, test x$enable_logind = xyes)
 
 if test x$enable_logind = xyes; then
   AC_DEFINE(WITH_LOGIND, 1, [Define if systemd logind support is enabled])
+  AC_DEFINE(LOGIND_RUNNING(), (access("/run/systemd/seats/", F_OK) >= 0),
+                     [Define to a check for whether the system is running logind])
 fi
 
 if test x$enable_consolekit = xno -a x$enable_logind = xno; then