engine: platform: posix: fix build when glibc execinfo.h is not available, but libbacktrace is still used

This commit is contained in:
Alibek Omarov 2025-02-09 16:19:39 +03:00
parent 54552d93ef
commit 21f62910ac

View file

@ -32,7 +32,7 @@ void Sys_CrashLibbacktrace( int signal, siginfo_t *si, void *context );
qboolean Sys_SetupLibbacktrace( const char *argv0 );
static struct sigaction oldFilter;
#if !HAVE_EXECINFO && !HAVE_LIBBACKTRACE
#if !HAVE_EXECINFO
#define STACK_BACKTRACE_STR "Stack backtrace:\n"
#define STACK_DUMP_STR "Stack dump:\n"