summaryrefslogtreecommitdiff
path: root/package/libunwind/patches
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2024-07-18 09:54:05 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2024-07-18 09:54:05 +0200
commitaf3fdfb3b8c3e4842ecc0ba1982b89f25ea43bc5 (patch)
treec9225e9a543f25288cd513d737cbc129a99be75a /package/libunwind/patches
parent69f755a0d88bdec0d4de4fc13508388872297f94 (diff)
libunwind: update to 1.8.1
Diffstat (limited to 'package/libunwind/patches')
-rw-r--r--package/libunwind/patches/patch-tests_test-coredump-unwind_c21
1 files changed, 0 insertions, 21 deletions
diff --git a/package/libunwind/patches/patch-tests_test-coredump-unwind_c b/package/libunwind/patches/patch-tests_test-coredump-unwind_c
deleted file mode 100644
index 640ae9c3b..000000000
--- a/package/libunwind/patches/patch-tests_test-coredump-unwind_c
+++ /dev/null
@@ -1,21 +0,0 @@
---- libunwind-1.2.orig/tests/test-coredump-unwind.c 2017-01-13 16:58:24.000000000 +0100
-+++ libunwind-1.2/tests/test-coredump-unwind.c 2017-04-17 18:52:13.963470134 +0200
-@@ -57,7 +57,9 @@
- #include <grp.h>
-
- /* For SIGSEGV handler code */
-+#ifndef __UCLIBC__
- #include <execinfo.h>
-+#endif
- #include <sys/ucontext.h>
-
- #include <libunwind-coredump.h>
-@@ -242,7 +244,7 @@ void handle_sigsegv(int sig, siginfo_t *
- void *array[50];
- int size;
- size = backtrace(array, 50);
--#ifdef __linux__
-+#if defined __linux__ && !defined __UCLIBC__
- backtrace_symbols_fd(array, size, 2);
- #endif
- }