summaryrefslogtreecommitdiff
path: root/user/qt5-qtpositioning/no-getting-thread-names.patch
diff options
context:
space:
mode:
Diffstat (limited to 'user/qt5-qtpositioning/no-getting-thread-names.patch')
-rw-r--r--user/qt5-qtpositioning/no-getting-thread-names.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/user/qt5-qtpositioning/no-getting-thread-names.patch b/user/qt5-qtpositioning/no-getting-thread-names.patch
deleted file mode 100644
index 63aa8f66c..000000000
--- a/user/qt5-qtpositioning/no-getting-thread-names.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- qtlocation-opensource-src-5.9.6/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp.old 2017-11-29 18:38:56.000000000 +0000
-+++ qtlocation-opensource-src-5.9.6/src/3rdparty/mapbox-gl-native/platform/default/thread.cpp 2018-07-16 09:24:16.990000000 +0000
-@@ -11,7 +11,9 @@
-
- std::string getCurrentThreadName() {
- char name[32] = "unknown";
-+#ifdef __GLIBC__
- pthread_getname_np(pthread_self(), name, sizeof(name));
-+#endif
-
- return name;
- }