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:
authorCampbell Barton <ideasman42@gmail.com>2011-12-26 01:31:19 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-12-26 01:31:19 +0400
commit2cd5436a81da5c15ac70bd2b80c2f062cce5d02e (patch)
tree2cc12476fb3fa653042eef99fa6b5d4d8cb290ec /source/blender/blenloader
parent4ced91da47ec1e95d71beef07b218fd0290ff68a (diff)
parent02d72b5c076f4ae1b47da74fe7a60a916edad9f2 (diff)
svn merge ^/trunk/blender -r42839:42871
Diffstat (limited to 'source/blender/blenloader')
-rw-r--r--source/blender/blenloader/BLO_sys_types.h8
1 files changed, 8 insertions, 0 deletions
diff --git a/source/blender/blenloader/BLO_sys_types.h b/source/blender/blenloader/BLO_sys_types.h
index e7f7a7e23bc..800ae834b59 100644
--- a/source/blender/blenloader/BLO_sys_types.h
+++ b/source/blender/blenloader/BLO_sys_types.h
@@ -86,6 +86,14 @@ typedef unsigned long uintptr_t;
/* Linux-i386, Linux-Alpha, Linux-ppc */
#include <stdint.h>
+/* XXX */
+#ifndef uint64_t
+typedef uint8_t u_int8_t;
+typedef uint16_t u_int16_t;
+typedef uint32_t u_int32_t;
+typedef uint64_t u_int64_t;
+#endif
+
#elif defined (__APPLE__)
#include <inttypes.h>