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:
authorMatteo F. Vescovi <mfvescovi@gmail.com>2014-05-26 11:37:54 +0400
committerSergey Sharybin <sergey.vfx@gmail.com>2014-06-02 14:26:38 +0400
commit9b23d9acec9aa88f1d810a40816b83b8d94df44b (patch)
tree12ddd0497a659f91b42e8b951b70735adb954ce5 /source/blender/blenlib/BLI_sys_types.h
parent3e6c734eaa3ed3a12dccc84a3c39ecda050ccb37 (diff)
Fix compilation error non non-linux architectures
Diffstat (limited to 'source/blender/blenlib/BLI_sys_types.h')
-rw-r--r--source/blender/blenlib/BLI_sys_types.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/blenlib/BLI_sys_types.h b/source/blender/blenlib/BLI_sys_types.h
index b0a8adeef22..fcbed1daf66 100644
--- a/source/blender/blenlib/BLI_sys_types.h
+++ b/source/blender/blenlib/BLI_sys_types.h
@@ -167,7 +167,7 @@ typedef unsigned long uintptr_t;
#define _UINTPTR_T_DEFINED
#endif
-#elif defined(__linux__) || defined(__NetBSD__) || defined(__OpenBSD__)
+#elif defined(__linux__) || defined(__NetBSD__) || defined(__OpenBSD__) || defined(__FreeBSD_kernel__) || defined(__GNU__)
/* Linux-i386, Linux-Alpha, Linux-ppc */
#include <stdint.h>