diff options
Diffstat (limited to 'testing/libreoffice/fix-execinfo.patch')
-rw-r--r-- | testing/libreoffice/fix-execinfo.patch | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/testing/libreoffice/fix-execinfo.patch b/testing/libreoffice/fix-execinfo.patch new file mode 100644 index 0000000000..01fca6fb2e --- /dev/null +++ b/testing/libreoffice/fix-execinfo.patch @@ -0,0 +1,24 @@ +diff -ru sal.orig/osl/unx/backtrace.h sal/osl/unx/backtrace.h +--- a/sal/osl/unx/backtrace.h 2015-01-22 22:05:28.000000000 -0200 ++++ b/sal/osl/unx/backtrace.h 2015-02-02 17:06:27.765494731 -0200 +@@ -47,7 +47,7 @@ + + #endif /* defined SOLARIS || FREEBSD || NETBSD || OPENBSD */ + +-#if defined (LINUX) ++#if defined (LINUX) && defined (__GLIBC__) + #include <execinfo.h> + #endif + +diff -ru sal.orig/osl/unx/signal.cxx sal/osl/unx/signal.cxx +--- a/sal/osl/unx/signal.cxx 2015-01-22 22:05:28.000000000 -0200 ++++ b/sal/osl/unx/signal.cxx 2015-02-02 17:06:53.495496086 -0200 +@@ -36,7 +36,7 @@ + + #endif /* MACOSX */ + +-#ifdef LINUX ++#if defined (LINUX) && defined (__GLIBC__) + #include <execinfo.h> + #include <link.h> + #define INCLUDE_BACKTRACE |