Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2003-01-30 21:51:05 +0300
committerKent Mein <mein@cs.umn.edu>2003-01-30 21:51:05 +0300
commit9475bf9e29cfab4c9d831ec3e52d2b3985ff5290 (patch)
tree6af3e18c842ffeb7455238d467f7da03c0c7f739 /source/blender/readstreamglue
parent96cb7d1629648d238542afe332138c0b02bd6597 (diff)
Modified checks for defined __FreeBSD__ to also include defined (__OpenBSD__)
From: http://www.blender.org/modules.php?op=modload&name=phpBB2&file=viewtopic&t=840 Kent
Diffstat (limited to 'source/blender/readstreamglue')
-rw-r--r--source/blender/readstreamglue/BLO_sys_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/readstreamglue/BLO_sys_types.h b/source/blender/readstreamglue/BLO_sys_types.h
index 4ae5eca51da..4333f74465d 100644
--- a/source/blender/readstreamglue/BLO_sys_types.h
+++ b/source/blender/readstreamglue/BLO_sys_types.h
@@ -81,7 +81,7 @@ typedef unsigned __int64 uint64_t;
#ifdef _WIN32
#define htonl(x) correctByteOrder(x)
#define ntohl(x) correctByteOrder(x)
-#elif defined __FreeBSD__
+#elif defined (__FreeBSD__) || defined (__OpenBSD__)
#include <sys/param.h>
#elif defined (__APPLE__)
#include <sys/types.h>