From e8484d181647ad1c24fba5071cd8a0c555fe103f Mon Sep 17 00:00:00 2001 From: Brian Callahan Date: Mon, 29 Jan 2018 15:56:34 +0100 Subject: [PATCH] Fix build on OpenBSD and FreeBSD --- src/openrct2/platform/Platform.Linux.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/openrct2/platform/Platform.Linux.cpp b/src/openrct2/platform/Platform.Linux.cpp index 0f98e1b2e5..31f26ec6b3 100644 --- a/src/openrct2/platform/Platform.Linux.cpp +++ b/src/openrct2/platform/Platform.Linux.cpp @@ -14,9 +14,9 @@ *****************************************************************************/ #pragma endregion -#if defined(__linux__) && !defined(__ANDROID__) +#if defined(__FreeBSD__) || defined(__OpenBSD__) || (defined(__linux__) && !defined(__ANDROID__)) -#include +#include #include #include "../core/Path.hpp" #include "../core/Util.hpp"