ports/databases/mysql80-server/files/patch-include_my__stacktrace.h
Jochen Neumeister 17ca1d5307 Fix build on non-x86 and nun-aarch6
PR:		244073
Submitted by:	pkubaj
MFH:		2020Q1
Sponsored by:	Netzkommune GmbH
2020-02-28 22:04:41 +00:00

11 lines
514 B
C

--- include/my_stacktrace.h.orig 2020-01-23 19:43:07.769584000 +0100
+++ include/my_stacktrace.h 2020-01-23 19:43:48.684042000 +0100
@@ -43,7 +43,7 @@
HAVE_BACKTRACE - Linux, FreeBSD, OSX, Solaris
_WIN32 - Windows
*/
-#if defined(HAVE_BACKTRACE) || defined(_WIN32)
+#if (defined(HAVE_BACKTRACE) || defined(_WIN32)) && (defined(__aarch64__) || defined(__amd64__) || defined(__i386__))
#define HAVE_STACKTRACE 1
void my_init_stacktrace();
void my_print_stacktrace(uchar *stack_bottom, ulong thread_stack);