stacktrace-common: define USE_NOTRACE if no HAVE_BACKTRACE (#21165)
Z. Liu committed
Oct 20, 2025 at 22:22 UTC
f935bc38ce6f62193972b499de0250b504243b35
1 file changed
+1
-1
src/libnetdata/stacktrace/stacktrace-common.h
+1
-1
@@ -24,7 +24,7 @@
24
#define USE_BACKTRACE 1
25
#endif
26
27
-#if !defined(USE_LIBBACKTRACE) && !defined(USE_LIBUNWIND) && !defined(USE_BACKTRACE) && defined(HAVE_BACKTRACE)
27
+#if !defined(USE_LIBBACKTRACE) && !defined(USE_LIBUNWIND) && !defined(USE_BACKTRACE) && !defined(HAVE_BACKTRACE)
28
#define USE_NOTRACE 1
29
#endif
30