summaryrefslogtreecommitdiff
path: root/user/polkit/polkit-0.115-elogind.patch
diff options
context:
space:
mode:
authorA. Wilcox <AWilcox@Wilcox-Tech.com>2023-12-04 05:54:52 -0600
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2023-12-07 20:50:20 -0600
commit7a2994761b1b0c34f270a808330d297dfd0d5eb2 (patch)
treec8319d7797f454eddd9c1a64e5a7b84066316f5d /user/polkit/polkit-0.115-elogind.patch
parenta33cfd93f9c412b0e5a485f8d858287214f39ff9 (diff)
downloadpackages-7a2994761b1b0c34f270a808330d297dfd0d5eb2.tar.gz
packages-7a2994761b1b0c34f270a808330d297dfd0d5eb2.tar.bz2
packages-7a2994761b1b0c34f270a808330d297dfd0d5eb2.tar.xz
packages-7a2994761b1b0c34f270a808330d297dfd0d5eb2.zip
user/polkit: Update to 123
* Uses duktape instead of SpiderMonkey/MozJS as JavaScript engine. * Lots of important CVEs fixes. * Uses Meson instead of autotools. * Most patches integrated upstream! Ref: #1100, #1104 Suggested-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'user/polkit/polkit-0.115-elogind.patch')
-rw-r--r--user/polkit/polkit-0.115-elogind.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/user/polkit/polkit-0.115-elogind.patch b/user/polkit/polkit-0.115-elogind.patch
deleted file mode 100644
index 93d672015..000000000
--- a/user/polkit/polkit-0.115-elogind.patch
+++ /dev/null
@@ -1,28 +0,0 @@
-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