forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
gnome-extra/cinnamon-session: Readd systemd support
Package-Manager: Portage-2.3.13, Repoman-2.3.3
- Loading branch information
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
21 changes: 21 additions & 0 deletions
21
gnome-extra/cinnamon-session/files/cinnamon-session-3.6.1-elogind2.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
diff --git a/configure.ac b/configure.ac | ||
index c46b35f..5bde44a 100644 | ||
--- a/configure.ac | ||
+++ b/configure.ac | ||
@@ -113,7 +113,7 @@ AC_ARG_ENABLE([logind], | ||
|
||
have_logind=no | ||
if test x$enable_logind != xno ; then | ||
- PKG_CHECK_MODULES(LOGIND, [gio-unix-2.0], [have_logind=yes], [have_logind=no]) | ||
+ PKG_CHECK_MODULES(LOGIND, [gio-unix-2.0 libsystemd], [have_logind=yes], [have_logind=no]) | ||
fi | ||
|
||
if test x$have_logind = xyes; then | ||
@@ -124,6 +124,7 @@ have_elogind=no | ||
PKG_CHECK_MODULES(ELOGIND, [libelogind], [have_elogind=yes], [have_elogind=no]) | ||
if test x$have_elogind = xyes; then | ||
AC_DEFINE(HAVE_ELOGIND, 1, [Define if elogind is supported]) | ||
+ AC_DEFINE(HAVE_LOGIND, 1, [Define if logind is supported]) | ||
fi | ||
|
||
AC_SUBST(LOGIND_CFLAGS) |