summaryrefslogtreecommitdiffstats
path: root/deps/ConsoleKit2/patches/0004-Apply-overlooked-prefix-lib-libdir-substitution.patch
diff options
context:
space:
mode:
author Eric Hameleers <alien@slackware.com>2015-09-13 13:04:59 +0200
committer Eric Hameleers <alien@slackware.com>2015-09-13 13:04:59 +0200
commit8425a13987c3657bc59791715befd8fe9cbc8c6c (patch)
treed3939947ab304d80ab9287f17343d3b9964071bf /deps/ConsoleKit2/patches/0004-Apply-overlooked-prefix-lib-libdir-substitution.patch
parent53dc81e7545cf436bfdd0c4ac1e63723e2f2086a (diff)
downloadktown-8425a13987c3657bc59791715befd8fe9cbc8c6c.tar.gz
ktown-8425a13987c3657bc59791715befd8fe9cbc8c6c.tar.xz
Updated 'deps' for KDE 5_15.09_02
LoginKit: removed. It was causing a minute-long delay on logout and display of the 'Leave' menu. ConsoleKit2 offers a systemd-logind API as well. ConsoleKit2: rebuilt with patches to make it work correctly on x86_64 (lib64). libproxy: added a rebuilt version of Slackware's package with KDE4 support removed, which prevents crashes in Qt5/KF5 applications which use libproxy (such as OwnCloud).
Diffstat (limited to 'deps/ConsoleKit2/patches/0004-Apply-overlooked-prefix-lib-libdir-substitution.patch')
-rw-r--r--deps/ConsoleKit2/patches/0004-Apply-overlooked-prefix-lib-libdir-substitution.patch22
1 files changed, 22 insertions, 0 deletions
diff --git a/deps/ConsoleKit2/patches/0004-Apply-overlooked-prefix-lib-libdir-substitution.patch b/deps/ConsoleKit2/patches/0004-Apply-overlooked-prefix-lib-libdir-substitution.patch
new file mode 100644
index 0000000..ee3b1e2
--- /dev/null
+++ b/deps/ConsoleKit2/patches/0004-Apply-overlooked-prefix-lib-libdir-substitution.patch
@@ -0,0 +1,22 @@
+From 22958330535c9e26ed537d1568925f64e3bafe4d Mon Sep 17 00:00:00 2001
+From: Eric Hameleers <alien@slackware.com>
+Date: Thu, 10 Sep 2015 14:19:43 +0200
+Subject: [PATCH] Apply overlooked PREFIX/lib -> LIBDIR substitution
+
+---
+ src/ck-session.c | 2 +-
+ 1 file changed, 1 insertion(+), 1 deletion(-)
+
+diff --git a/src/ck-session.c b/src/ck-session.c
+index ca0f8ca..1b58889 100644
+--- a/src/ck-session.c
++++ b/src/ck-session.c
+@@ -1273,7 +1273,7 @@ ck_session_run_programs (CkSession *session,
+ g_assert(n <= G_N_ELEMENTS(extra_env));
+
+ ck_run_programs (SYSCONFDIR "/ConsoleKit/run-session.d", action, extra_env);
+- ck_run_programs (PREFIX "/lib/ConsoleKit/run-session.d", action, extra_env);
++ ck_run_programs (LIBDIR "/ConsoleKit/run-session.d", action, extra_env);
+
+ for (n = 0; extra_env[n] != NULL; n++) {
+ g_free (extra_env[n]);