mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-08-05 21:37:15 +02:00
25 lines
736 B
Diff
25 lines
736 B
Diff
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
|