aboutsummaryrefslogtreecommitdiffstats
path: root/testing/widelands/fix-execinfo.patch
diff options
context:
space:
mode:
authorLeo <thinkabit.ukim@gmail.com>2020-01-10 16:29:35 +0100
committerLeo <thinkabit.ukim@gmail.com>2020-01-10 16:33:51 +0100
commitff886ccd446d4b0ffb011537c4703cab7aecfed9 (patch)
tree6b48f675c1a4a2858e7a38d42f04005f2a4ff649 /testing/widelands/fix-execinfo.patch
parent56eeef79f66f199bb79ab81d4824d94b6277cd84 (diff)
downloadaports-ff886ccd446d4b0ffb011537c4703cab7aecfed9.tar.bz2
aports-ff886ccd446d4b0ffb011537c4703cab7aecfed9.tar.xz
testing/widelands: remove
Never worked
Diffstat (limited to 'testing/widelands/fix-execinfo.patch')
-rw-r--r--testing/widelands/fix-execinfo.patch28
1 files changed, 0 insertions, 28 deletions
diff --git a/testing/widelands/fix-execinfo.patch b/testing/widelands/fix-execinfo.patch
deleted file mode 100644
index 4b4b35d44f..0000000000
--- a/testing/widelands/fix-execinfo.patch
+++ /dev/null
@@ -1,28 +0,0 @@
---- a/src/logic/backtrace.cc 2016-11-10 08:28:01.000000000 +0100
-+++ b/src/logic/backtrace.cc 2017-12-19 07:58:01.659673467 +0100
-@@ -22,15 +22,17 @@
- #ifndef _WIN32
- #ifndef __APPLE__
- #include <cstdlib>
--
-+#if defined(__GLIBC__)
- #include <execinfo.h>
- #endif
- #endif
-+#endif
-
- std::string get_backtrace() {
- std::string result("Backtrace:\n");
- #ifndef _WIN32
- #ifndef __APPLE__
-+#ifdef __GLIBC__
- #define BACKTRACE_STACKSIZE 24
-
- void* stack[BACKTRACE_STACKSIZE];
-@@ -43,5 +45,6 @@
- free(list);
- #endif
- #endif
-+#endif
- return result;
- }