Merge pull request #548 from PoroCYon/master

Fix build without systemd
This commit is contained in:
emersion 2018-01-02 16:53:51 +01:00 committed by GitHub
commit 767df15b02
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@
#ifdef WLR_HAS_SYSTEMD
#include <systemd/sd-bus.h>
#include <systemd/sd-login.h>
#elif WLR_HAS_ELOGIND
#elif defined(WLR_HAS_ELOGIND)
#include <elogind/sd-bus.h>
#include <elogind/sd-login.h>
#endif

View File

@ -20,7 +20,7 @@ extern const struct session_impl session_direct;
static const struct session_impl *impls[] = {
#ifdef WLR_HAS_SYSTEMD
&session_logind,
#elif WLR_HAS_ELOGIND
#elif defined(WLR_HAS_ELOGIND)
&session_logind,
#endif
&session_direct,