Skip to content

Commit b5076db

Browse files
authored
Fix build on OpenBSD (#7855)
PR #7773 broke the build on OpenBSD.
1 parent 4c0c68f commit b5076db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/config.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -211,7 +211,7 @@ static const std::string emptyString;
211211
#define USE_WINDOWS_SEH
212212
#endif
213213

214-
#if !defined(NO_UNIX_BACKTRACE_SUPPORT) && defined(__GNUC__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__NetBSD__) && !defined(__SVR4) && !defined(__QNX__)
214+
#if !defined(NO_UNIX_BACKTRACE_SUPPORT) && defined(__GNUC__) && !defined(__APPLE__) && !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(__NetBSD__) && !defined(__OpenBSD__) && !defined(__SVR4) && !defined(__QNX__)
215215
#define USE_UNIX_BACKTRACE_SUPPORT
216216
#endif
217217

0 commit comments

Comments
 (0)