summaryrefslogtreecommitdiff
path: root/pcr/polkit-elogind/elogind-configure-fix.patch
diff options
context:
space:
mode:
authorDavid P <megver83@parabola.nu>2018-04-19 22:11:23 -0300
committerDavid P <megver83@parabola.nu>2018-04-19 22:14:13 -0300
commit0dde27a0f3fd11a8d3195faedf2dd08193b0d425 (patch)
treed8e43a68218c1197302e9b10fed1435c81111a7a /pcr/polkit-elogind/elogind-configure-fix.patch
parent1ca15343a97e3cf701b405ed92d6db85960333eb (diff)
upgpkg: pcr/polkit-elogind 0.114-1.parabola1
Signed-off-by: David P <megver83@parabola.nu>
Diffstat (limited to 'pcr/polkit-elogind/elogind-configure-fix.patch')
-rw-r--r--pcr/polkit-elogind/elogind-configure-fix.patch28
1 files changed, 28 insertions, 0 deletions
diff --git a/pcr/polkit-elogind/elogind-configure-fix.patch b/pcr/polkit-elogind/elogind-configure-fix.patch
new file mode 100644
index 000000000..81db3becc
--- /dev/null
+++ b/pcr/polkit-elogind/elogind-configure-fix.patch
@@ -0,0 +1,28 @@
+From 08bb656496cd3d6213bbe9473f63f2d4a110da6e Mon Sep 17 00:00:00 2001
+From: Rasmus Thomsen <cogitri@exherbo.org>
+Date: Wed, 11 Apr 2018 13:14:14 +0200
+Subject: [PATCH] configure: fix elogind support
+
+HAVE_LIBSYSTEMD is used to determine which source files to use.
+We have to check if either have_libsystemd or have_libelogind is
+true, as both of these need the source files which are used when
+HAVE_LIBSYSTEMD is true.
+---
+ configure.ac | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/configure.ac b/configure.ac
+index 36df239..da47ecb 100644
+--- a/configure.ac
++++ b/configure.ac
+@@ -221,7 +221,7 @@ AS_IF([test "x$cross_compiling" != "xyes" ], [
+
+ AC_SUBST(LIBSYSTEMD_CFLAGS)
+ AC_SUBST(LIBSYSTEMD_LIBS)
+-AM_CONDITIONAL(HAVE_LIBSYSTEMD, [test "$have_libsystemd" = "yes"], [Using libsystemd])
++AM_CONDITIONAL(HAVE_LIBSYSTEMD, [test "$have_libsystemd" = "yes" || test "$have_libelogind" = "yes" ], [Using libsystemd])
+
+ dnl ---------------------------------------------------------------------------
+ dnl - systemd unit / service files
+--
+2.17.0