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 14:16:17 +0300
committerKent Mein <mein@cs.umn.edu>2002-11-25 14:16:17 +0300
commitb9a19f1ea702446cb176d3f621de331d5c2cc9da (patch)
tree9e2e0d1265ef8a2ad9e7719b1881d653b088cd5c /source/kernel
parent3f2f1571e5b1839c88f9facfe6834ec19f6e533a (diff)
Did all of the .h's in source
(adding) #ifdef HAVE_CONFIG_H #include <config.h> #endif also the Makefile.in's were from previous patch adding the system depend stuff to configure.ac Kent -- mein@cs.umn.edu
Diffstat (limited to 'source/kernel')
-rw-r--r--source/kernel/gen_messaging/GEN_messaging.h3
-rw-r--r--source/kernel/gen_system/GEN_DataCache.h4
-rw-r--r--source/kernel/gen_system/GEN_HashedPtr.h4
-rw-r--r--source/kernel/gen_system/GEN_Map.h4
-rw-r--r--source/kernel/gen_system/GEN_Matrix4x4.h4
-rw-r--r--source/kernel/gen_system/GEN_SmartPtr.h4
-rw-r--r--source/kernel/gen_system/SYS_SingletonSystem.h4
-rw-r--r--source/kernel/gen_system/SYS_System.h4
8 files changed, 31 insertions, 0 deletions
diff --git a/source/kernel/gen_messaging/GEN_messaging.h b/source/kernel/gen_messaging/GEN_messaging.h
index 3d8b3d5fe10..672d9596885 100644
--- a/source/kernel/gen_messaging/GEN_messaging.h
+++ b/source/kernel/gen_messaging/GEN_messaging.h
@@ -34,6 +34,9 @@
#include <stdio.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
#ifdef __cplusplus
extern "C" {
diff --git a/source/kernel/gen_system/GEN_DataCache.h b/source/kernel/gen_system/GEN_DataCache.h
index 7e4e0127c63..09a58938cc6 100644
--- a/source/kernel/gen_system/GEN_DataCache.h
+++ b/source/kernel/gen_system/GEN_DataCache.h
@@ -35,6 +35,10 @@
#include "STR_HashedString.h"
#include "GEN_Map.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
template <class T>
class GEN_DataCache
{
diff --git a/source/kernel/gen_system/GEN_HashedPtr.h b/source/kernel/gen_system/GEN_HashedPtr.h
index 8fabc9a5516..afd6ed4f4c3 100644
--- a/source/kernel/gen_system/GEN_HashedPtr.h
+++ b/source/kernel/gen_system/GEN_HashedPtr.h
@@ -33,6 +33,10 @@
#ifndef __GEN_HASHEDPTR
#define __GEN_HASHEDPTR
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
unsigned int GEN_Hash(unsigned int inDWord);
class GEN_HashedPtr
diff --git a/source/kernel/gen_system/GEN_Map.h b/source/kernel/gen_system/GEN_Map.h
index a01d6c3f6be..fba1b4ecbc6 100644
--- a/source/kernel/gen_system/GEN_Map.h
+++ b/source/kernel/gen_system/GEN_Map.h
@@ -32,6 +32,10 @@
#ifndef GEN_MAP_H
#define GEN_MAP_H
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
template <class Key, class Value>
class GEN_Map {
private:
diff --git a/source/kernel/gen_system/GEN_Matrix4x4.h b/source/kernel/gen_system/GEN_Matrix4x4.h
index 8fc1539f777..cd0a586b2e0 100644
--- a/source/kernel/gen_system/GEN_Matrix4x4.h
+++ b/source/kernel/gen_system/GEN_Matrix4x4.h
@@ -34,6 +34,10 @@
#include "MT_Point3.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class GEN_Matrix4x4
{
public:
diff --git a/source/kernel/gen_system/GEN_SmartPtr.h b/source/kernel/gen_system/GEN_SmartPtr.h
index 88dc93528f2..60ed69ffdc5 100644
--- a/source/kernel/gen_system/GEN_SmartPtr.h
+++ b/source/kernel/gen_system/GEN_SmartPtr.h
@@ -37,6 +37,10 @@
#include <stdlib.h> // for NULL !
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
/**
* @section GEN_SmartPtr
* This class defines a smart pointer similar to that defined in
diff --git a/source/kernel/gen_system/SYS_SingletonSystem.h b/source/kernel/gen_system/SYS_SingletonSystem.h
index 2d0d7088b76..78f240f944d 100644
--- a/source/kernel/gen_system/SYS_SingletonSystem.h
+++ b/source/kernel/gen_system/SYS_SingletonSystem.h
@@ -38,6 +38,10 @@
#include "STR_HashedString.h"
#include "GEN_DataCache.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
class SYS_SingletonSystem
{
public:
diff --git a/source/kernel/gen_system/SYS_System.h b/source/kernel/gen_system/SYS_System.h
index 4125b662d2b..5da3fd72f2d 100644
--- a/source/kernel/gen_system/SYS_System.h
+++ b/source/kernel/gen_system/SYS_System.h
@@ -35,6 +35,10 @@
#ifndef __SYSTEM_INCLUDE
#define __SYSTEM_INCLUDE
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#define SYS_DECLARE_HANDLE(name) typedef struct name##__ { int unused; } *name
SYS_DECLARE_HANDLE(SYS_SystemHandle);