aboutsummaryrefslogtreecommitdiffstats
path: root/main/deadbeef/6d39333448dd7c48fb3f4e07ff5d7e05d0527fff.patch
diff options
context:
space:
mode:
Diffstat (limited to 'main/deadbeef/6d39333448dd7c48fb3f4e07ff5d7e05d0527fff.patch')
-rw-r--r--main/deadbeef/6d39333448dd7c48fb3f4e07ff5d7e05d0527fff.patch40
1 files changed, 0 insertions, 40 deletions
diff --git a/main/deadbeef/6d39333448dd7c48fb3f4e07ff5d7e05d0527fff.patch b/main/deadbeef/6d39333448dd7c48fb3f4e07ff5d7e05d0527fff.patch
deleted file mode 100644
index 3de7b1d61a..0000000000
--- a/main/deadbeef/6d39333448dd7c48fb3f4e07ff5d7e05d0527fff.patch
+++ /dev/null
@@ -1,40 +0,0 @@
-From 6d39333448dd7c48fb3f4e07ff5d7e05d0527fff Mon Sep 17 00:00:00 2001
-From: Carlo Landmeter <clandmeter@gmail.com>
-Date: Wed, 29 Oct 2014 10:36:57 +0100
-Subject: [PATCH] musl libc does not have execinfo.h
-
----
- main.c | 6 +++---
- 1 file changed, 3 insertions(+), 3 deletions(-)
-
-diff --git a/main.c b/main.c
-index d7dab49..797889c 100644
---- a/main.c
-+++ b/main.c
-@@ -51,7 +51,7 @@
- #include <sys/fcntl.h>
- #include <sys/errno.h>
- #include <signal.h>
--#ifdef __linux__
-+#ifdef __GLIBC__
- #include <execinfo.h>
- #endif
- #include <unistd.h>
-@@ -642,7 +642,7 @@ player_mainloop (void) {
- }
- }
-
--#ifdef __linux__
-+#ifdef __GLIBC__
- void
- sigsegv_handler (int sig) {
- fprintf (stderr, "Segmentation Fault\n");
-@@ -761,7 +761,7 @@ main (int argc, char *argv[]) {
- }
- #endif
-
--#ifdef __linux__
-+#ifdef __GLIBC__
- signal (SIGSEGV, sigsegv_handler);
- #endif
- setlocale (LC_ALL, "");