kde-plasma/kwin: Initialize kcrash for xclipboardsync
authorAndreas Sturmlechner <asturm@gentoo.org>
Sat, 17 Nov 2018 23:45:16 +0000 (00:45 +0100)
committerAndreas Sturmlechner <asturm@gentoo.org>
Sun, 18 Nov 2018 00:16:44 +0000 (01:16 +0100)
Package-Manager: Portage-2.3.51, Repoman-2.3.12
Signed-off-by: Andreas Sturmlechner <asturm@gentoo.org>
kde-plasma/kwin/files/kwin-5.14.3-kcrash-init.patch [new file with mode: 0644]
kde-plasma/kwin/kwin-5.14.3-r1.ebuild

diff --git a/kde-plasma/kwin/files/kwin-5.14.3-kcrash-init.patch b/kde-plasma/kwin/files/kwin-5.14.3-kcrash-init.patch
new file mode 100644 (file)
index 0000000..fc9c300
--- /dev/null
@@ -0,0 +1,48 @@
+From aace9b1675819feab81d50f694391c7d854d9822 Mon Sep 17 00:00:00 2001
+From: Harald Sitter <sitter@kde.org>
+Date: Fri, 16 Nov 2018 12:50:53 +0100
+Subject: actually initialize kcrash for xclipboardsync
+
+Summary:
+to successfully use kcrash when linking with as-needed (which is a default
+flag on many linux distros) one also needs to call KCrash::initialize.
+
+https://markmail.org/thread/zv5pheijaze72bzs
+
+Test Plan: builds; correctly links kcrash
+
+Reviewers: davidedmundson
+
+Reviewed By: davidedmundson
+
+Subscribers: kwin
+
+Tags: #kwin
+
+Differential Revision: https://phabricator.kde.org/D16923
+---
+ helpers/xclipboardsync/main.cpp | 2 ++
+ 1 file changed, 2 insertions(+)
+
+diff --git a/helpers/xclipboardsync/main.cpp b/helpers/xclipboardsync/main.cpp
+index 2f06e9c..1a5e5ee 100644
+--- a/helpers/xclipboardsync/main.cpp
++++ b/helpers/xclipboardsync/main.cpp
+@@ -19,6 +19,7 @@ along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *********************************************************************/
+ #include "waylandclipboard.h"
++#include <KCrash>
+ #include <QGuiApplication>
+ #include <config-kwin.h>
+@@ -40,6 +41,7 @@ int main(int argc, char *argv[])
+                 argv[0], qPrintable(app.platformName()));
+         return 1;
+     }
++    KCrash::initialize();
+     new WaylandClipboard(&app);
+     return app.exec();
+ }
+-- 
+cgit v0.11.2
index a2ab760c9bed6281350ff8af80c3397daa49483a..c74288ae8cb14ba480a06afdddbbe5c8d89a6624 100644 (file)
@@ -89,8 +89,9 @@ PDEPEND="
 RESTRICT+=" test"
 
 PATCHES=(
-       "${FILESDIR}/${PN}-5.14.3-virtualdesktop-crash.patch"
-       "${FILESDIR}/${PN}-5.14.3-resizewindows-crash.patch"
+       "${FILESDIR}/${P}-virtualdesktop-crash.patch"
+       "${FILESDIR}/${P}-resizewindows-crash.patch"
+       "${FILESDIR}/${P}-kcrash-init.patch"
 )
 
 src_prepare() {