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>2002-11-25 18:29:57 +0300
committerKent Mein <mein@cs.umn.edu>2002-11-25 18:29:57 +0300
commit209a2ede2cdeade0d543969e7b2ff62fee84b43e (patch)
tree28484297290b14033587b3704535db4a0bb06c71 /source/kernel
parentd0e346d544cd3abb0007a68137b31923020f7aeb (diff)
Last of the config.h mods...
#ifdef HAVE_CONFIG_H #include <config.h> #endif added to these files. Kent -- mein@cs.umn.edu
Diffstat (limited to 'source/kernel')
-rw-r--r--source/kernel/gen_system/GEN_HashedPtr.cpp4
-rw-r--r--source/kernel/gen_system/GEN_Matrix4x4.cpp4
-rw-r--r--source/kernel/gen_system/SYS_SingletonSystem.cpp4
-rw-r--r--source/kernel/gen_system/SYS_System.cpp4
4 files changed, 15 insertions, 1 deletions
diff --git a/source/kernel/gen_system/GEN_HashedPtr.cpp b/source/kernel/gen_system/GEN_HashedPtr.cpp
index 6163b4a7c64..f852530fa53 100644
--- a/source/kernel/gen_system/GEN_HashedPtr.cpp
+++ b/source/kernel/gen_system/GEN_HashedPtr.cpp
@@ -32,6 +32,10 @@
*/
#include "GEN_HashedPtr.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
unsigned int GEN_Hash(unsigned int inDWord)
{
unsigned int key = inDWord;
diff --git a/source/kernel/gen_system/GEN_Matrix4x4.cpp b/source/kernel/gen_system/GEN_Matrix4x4.cpp
index ad250ea9ffc..4b941648e49 100644
--- a/source/kernel/gen_system/GEN_Matrix4x4.cpp
+++ b/source/kernel/gen_system/GEN_Matrix4x4.cpp
@@ -31,7 +31,9 @@
#include "GEN_Matrix4x4.h"
-
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
GEN_Matrix4x4::GEN_Matrix4x4()
{
diff --git a/source/kernel/gen_system/SYS_SingletonSystem.cpp b/source/kernel/gen_system/SYS_SingletonSystem.cpp
index 5692c5348de..b65ba69ec42 100644
--- a/source/kernel/gen_system/SYS_SingletonSystem.cpp
+++ b/source/kernel/gen_system/SYS_SingletonSystem.cpp
@@ -34,6 +34,10 @@
#include "SYS_SingletonSystem.h"
#include "GEN_DataCache.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
SYS_SingletonSystem* SYS_SingletonSystem::_instance = 0;
void SYS_SingletonSystem::Destruct()
diff --git a/source/kernel/gen_system/SYS_System.cpp b/source/kernel/gen_system/SYS_System.cpp
index 48f5b2632fd..84cd61f0ba6 100644
--- a/source/kernel/gen_system/SYS_System.cpp
+++ b/source/kernel/gen_system/SYS_System.cpp
@@ -34,6 +34,10 @@
#include "SYS_System.h"
#include "SYS_SingletonSystem.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
SYS_SystemHandle SYS_GetSystem()
{
return (SYS_SystemHandle) SYS_SingletonSystem::Instance();