From 6af7f258e04aed00866c83f477cbc226909e216a Mon Sep 17 00:00:00 2001 From: Brad Smith Date: Sat, 29 Jun 2024 17:56:33 -0400 Subject: [PATCH] Fix building on *BSDs None of the *BSD's have the alloca.h header. --- src/openrct2/core/String.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/openrct2/core/String.cpp b/src/openrct2/core/String.cpp index bc1f7b34f6..9b8b77e250 100644 --- a/src/openrct2/core/String.cpp +++ b/src/openrct2/core/String.cpp @@ -14,7 +14,7 @@ #include #include #ifndef _WIN32 -# ifndef __FreeBSD__ +# if !defined(__FreeBSD__) && !defined(__NetBSD__) && !defined(__OpenBSD__) # include # endif # include