summaryrefslogtreecommitdiff
path: root/src/porting.cpp
diff options
context:
space:
mode:
authorSebastien Marie <semarie@users.noreply.github.com>2020-08-20 19:10:58 +0200
committerGitHub <noreply@github.com>2020-08-20 19:10:58 +0200
commit9c7340104a7ec4007e3dfe0bb4482f3c8f9878e0 (patch)
treed922b8972c43b83e442d46b974a8b0f91ce404b0 /src/porting.cpp
parent71287894adbf3cbe092ded1cbf02755678305afb (diff)
downloadminetest-9c7340104a7ec4007e3dfe0bb4482f3c8f9878e0.tar.gz
minetest-9c7340104a7ec4007e3dfe0bb4482f3c8f9878e0.tar.bz2
minetest-9c7340104a7ec4007e3dfe0bb4482f3c8f9878e0.zip
Define environ variable on OpenBSD (#10302)
Diffstat (limited to 'src/porting.cpp')
-rw-r--r--src/porting.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/porting.cpp b/src/porting.cpp
index d902d3737..b3c8cae99 100644
--- a/src/porting.cpp
+++ b/src/porting.cpp
@@ -25,7 +25,7 @@ with this program; if not, write to the Free Software Foundation, Inc.,
#include "porting.h"
-#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__)
+#if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__DragonFly__) || defined(__OpenBSD__)
#include <sys/types.h>
#include <sys/sysctl.h>
extern char **environ;