summaryrefslogtreecommitdiff
path: root/user/libreoffice/fix-execinfo.patch
diff options
context:
space:
mode:
Diffstat (limited to 'user/libreoffice/fix-execinfo.patch')
-rw-r--r--user/libreoffice/fix-execinfo.patch33
1 files changed, 0 insertions, 33 deletions
diff --git a/user/libreoffice/fix-execinfo.patch b/user/libreoffice/fix-execinfo.patch
deleted file mode 100644
index cb82b7d84..000000000
--- a/user/libreoffice/fix-execinfo.patch
+++ /dev/null
@@ -1,33 +0,0 @@
---- libreoffice-6.2.1.2/sal/osl/unx/backtrace.h
-+++ libreoffice-6.2.1.2/sal/osl/unx/backtrace.h
-@@ -20,7 +20,7 @@
- #ifndef INCLUDED_SAL_OSL_UNX_BACKTRACE_H
- #define INCLUDED_SAL_OSL_UNX_BACKTRACE_H
-
--#if defined (LINUX)
-+#if defined (LINUX) && defined (__GLIBC__)
-
- #include <execinfo.h>
-
---- libreoffice-6.2.1.2/sal/osl/unx/signal.cxx
-+++ libreoffice-6.2.1.2/sal/osl/unx/signal.cxx
-@@ -35,7 +35,7 @@
-
- #endif /* MACOSX */
-
--#ifdef LINUX
-+#if defined(LINUX) && defined(__GLIBC__)
- #include <execinfo.h>
- #include <link.h>
- #define INCLUDE_BACKTRACE
---- libreoffice-6.2.1.2/sal/osl/unx/backtrace.c
-+++ libreoffice-6.2.1.2/sal/osl/unx/backtrace.c
-@@ -279,7 +279,7 @@ void backtrace_symbols_fd( void **buffer
- }
- }
-
--#elif !defined LINUX
-+#elif !defined(__GLIBC__)
-
- int backtrace( void **buffer, int max_frames )
- {