From 6b1c89f4370d234c552b6dad687a07fe1585e2e1 Mon Sep 17 00:00:00 2001 From: Anton Lindqvist Date: Thu, 25 Sep 2025 15:34:44 +0200 Subject: [PATCH] Fix build on OpenBSD PR #7773 broke the build on OpenBSD. --- lib/config.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/config.h b/lib/config.h index 232fcb007fb..55e180512e0 100644 --- a/lib/config.h +++ b/lib/config.h @@ -211,7 +211,7 @@ static const std::string emptyString; #define USE_WINDOWS_SEH #endif -#if !defined(NO_UNIX_BACKTRACE_SUPPORT) && defined(__GNUC__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__NetBSD__) && !defined(__SVR4) && !defined(__QNX__) +#if !defined(NO_UNIX_BACKTRACE_SUPPORT) && defined(__GNUC__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__NetBSD__) && !defined(__OpenBSD__) && !defined(__SVR4) && !defined(__QNX__) #define USE_UNIX_BACKTRACE_SUPPORT #endif