summaryrefslogtreecommitdiff
path: root/app-admin/conky/files
diff options
context:
space:
mode:
authorV3n3RiX <venerix@redcorelinux.org>2020-04-12 03:41:30 +0100
committerV3n3RiX <venerix@redcorelinux.org>2020-04-12 03:41:30 +0100
commit623ee73d661e5ed8475cb264511f683407d87365 (patch)
tree993eb27c93ec7a2d2d19550300d888fc1fed9e69 /app-admin/conky/files
parentceeeb463cc1eef97fd62eaee8bf2196ba04bc384 (diff)
gentoo Easter resync : 12.04.2020
Diffstat (limited to 'app-admin/conky/files')
-rw-r--r--app-admin/conky/files/conky-1.10.8-clang.patch30
1 files changed, 30 insertions, 0 deletions
diff --git a/app-admin/conky/files/conky-1.10.8-clang.patch b/app-admin/conky/files/conky-1.10.8-clang.patch
new file mode 100644
index 000000000000..2fc49fa9cf25
--- /dev/null
+++ b/app-admin/conky/files/conky-1.10.8-clang.patch
@@ -0,0 +1,30 @@
+--- conky-1.10.8/src/linux.cc 2018-02-07 17:16:39.000000000 +0300
++++ conky-1.10.8.new/src/linux.cc 2020-02-22 00:43:52.336620654 +0300
+@@ -37,6 +37,7 @@
+ #include <ctype.h>
+ #include <errno.h>
+ #include <limits.h>
++#include <clocale>
+ #include <sys/types.h>
+ #include <sys/sysinfo.h>
+ #include <sys/stat.h>
+--- conky-1.10.8/src/luamm.cc 2020-02-22 00:57:25.847867585 +0300
++++ conky-1.10.8.new/src/luamm.cc 2020-02-22 00:59:29.820510124 +0300
+@@ -23,6 +23,8 @@
+
+ #include "luamm.hh"
+
++#include <cxxabi.h>
++
+ namespace lua {
+ namespace {
+
+@@ -57,7 +59,7 @@
+ lua_pushstring(l, e.what());
+ }
+ catch(...) {
+- lua_pushstring(l, ptr->__cxa_exception_type()->name());
++ lua_pushstring(l, abi::__cxa_current_exception_type()->name());
+ }
+ return 1;
+ }