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
path: root/intern
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-03-30 20:14:54 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-03-30 20:14:54 +0400
commitbb1f20a534e1179fcc1f104c117f27676910bcc2 (patch)
tree04beef3e9df70c79ea8b8bd3aa5df65e4d14e82f /intern
parentcc87bf16a18f28e6958033fdab1a34bd940fbbff (diff)
includes for building with gcc 4.6 on fedora.
patch from Richard Shaw
Diffstat (limited to 'intern')
-rw-r--r--intern/ghost/GHOST_IEvent.h1
-rw-r--r--intern/memutil/MEM_Allocator.h1
2 files changed, 2 insertions, 0 deletions
diff --git a/intern/ghost/GHOST_IEvent.h b/intern/ghost/GHOST_IEvent.h
index 4c8c4d4a392..bb13179fbfe 100644
--- a/intern/ghost/GHOST_IEvent.h
+++ b/intern/ghost/GHOST_IEvent.h
@@ -34,6 +34,7 @@
#ifndef _GHOST_IEVENT_H_
#define _GHOST_IEVENT_H_
+#include <stddef.h>
#include "GHOST_Types.h"
class GHOST_IWindow;
diff --git a/intern/memutil/MEM_Allocator.h b/intern/memutil/MEM_Allocator.h
index 9e9ce47c84f..14d62a2434d 100644
--- a/intern/memutil/MEM_Allocator.h
+++ b/intern/memutil/MEM_Allocator.h
@@ -29,6 +29,7 @@
#ifndef MEM_ALLOCATOR_H
#define MEM_ALLOCATOR_H
+#include <stddef.h>
#include "guardedalloc/MEM_guardedalloc.h"
#include "guardedalloc/MEM_sys_types.h"