diff options
author | Victor Kareh <vkareh@redhat.com> | 2019-03-08 13:37:01 -0500 |
---|---|---|
committer | Victor Kareh <vkareh@vkareh.net> | 2019-03-21 08:33:24 -0400 |
commit | 51f12ece0dcb77f08462ca1ae27a0a571f3b338e (patch) | |
tree | 940ecabac4ef106b2c7c545e9ca6bdebb114c255 /mate-session | |
parent | 254a091b31517a25bc037b31daff27fbb74ac90d (diff) | |
download | mate-session-manager-51f12ece0dcb77f08462ca1ae27a0a571f3b338e.tar.bz2 mate-session-manager-51f12ece0dcb77f08462ca1ae27a0a571f3b338e.tar.xz |
Add ELOGIND support
Reuses HAVE_SYSTEMD #define to reduce #ifdef mess.
ELOGIND is not officially supported, but since it's
a subset of systemd, it should work out of the box.
Co-authored-by: Joakim Tjernlund <joakim.tjernlund@infinera.com>
Co-authored-by: Jorge Pizarro Callejas <jpizarrocallejas@gmail.com>
Diffstat (limited to 'mate-session')
-rw-r--r-- | mate-session/Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/mate-session/Makefile.am b/mate-session/Makefile.am index 093c908..ea0dc95 100644 --- a/mate-session/Makefile.am +++ b/mate-session/Makefile.am @@ -7,6 +7,7 @@ noinst_PROGRAMS = \ AM_CPPFLAGS = \ $(MATE_SESSION_CFLAGS) \ $(SYSTEMD_CFLAGS) \ + $(LIBELOGIND_CFLAGS) \ $(DISABLE_DEPRECATED_CFLAGS) AM_CFLAGS = $(WARN_CFLAGS) @@ -80,6 +81,7 @@ mate_session_LDADD = \ $(XEXT_LIBS) \ $(MATE_SESSION_LIBS) \ $(SYSTEMD_LIBS) \ + $(LIBELOGIND_LIBS) \ $(EXECINFO_LIBS) libgsmutil_la_SOURCES = \ |