mirror of
https://github.com/MarkusMcNugen/docker-qBittorrentvpn
synced 2024-11-14 22:55:11 +00:00
15 lines
342 B
Diff
15 lines
342 B
Diff
--- src/app/main.cpp
|
|
+++ src/app/main.cpp
|
|
@@ -59,8 +59,9 @@
|
|
|
|
#ifdef Q_OS_UNIX
|
|
#include <signal.h>
|
|
-#include <execinfo.h>
|
|
-#include "stacktrace.h"
|
|
+static inline void print_stacktrace(FILE *out = stderr, unsigned int max_frames = 63) {
|
|
+ fprintf(out, "stack trace:\n N/A (%d)", max_frames);
|
|
+}
|
|
#endif // Q_OS_UNIX
|
|
|
|
#ifdef STACKTRACE_WIN
|