diff options
author | Sebastien Marie <semarie@users.noreply.github.com> | 2020-08-20 19:10:58 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-20 19:10:58 +0200 |
commit | 9c7340104a7ec4007e3dfe0bb4482f3c8f9878e0 (patch) | |
tree | d922b8972c43b83e442d46b974a8b0f91ce404b0 /src/porting.cpp | |
parent | 71287894adbf3cbe092ded1cbf02755678305afb (diff) | |
download | minetest-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.cpp | 2 |
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; |