1
0
mirror of https://github.com/OpenRCT2/OpenRCT2 synced 2026-02-02 03:35:09 +01:00

Fix build on OpenBSD and FreeBSD

This commit is contained in:
Brian Callahan
2018-01-29 15:56:34 +01:00
committed by Ted John
parent 172b5907fa
commit e8484d1816

View File

@@ -14,9 +14,9 @@
*****************************************************************************/
#pragma endregion
#if defined(__linux__) && !defined(__ANDROID__)
#if defined(__FreeBSD__) || defined(__OpenBSD__) || (defined(__linux__) && !defined(__ANDROID__))
#include <linux/limits.h>
#include <limits.h>
#include <pwd.h>
#include "../core/Path.hpp"
#include "../core/Util.hpp"