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-12-27 16:11:01 +0300
committerKent Mein <mein@cs.umn.edu>2002-12-27 16:11:01 +0300
commitf1c4f705a19cc9ae306431be7a970712a40a2d9a (patch)
treea0dac6b28132e480266a7d7c2d5f2c75613ca1a1 /source/kernel
parentf78de74b202cefa087e9d6d1ac62a6d4f0bcf6eb (diff)
Removed the config.h thing from the .h's in the source dir.
So we should be all set now :) Kent -- mein@cs.umn.edu
Diffstat (limited to 'source/kernel')
-rw-r--r--source/kernel/gen_messaging/GEN_messaging.h4
-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, 0 insertions, 32 deletions
diff --git a/source/kernel/gen_messaging/GEN_messaging.h b/source/kernel/gen_messaging/GEN_messaging.h
index 672d9596885..b4b20c21cd9 100644
--- a/source/kernel/gen_messaging/GEN_messaging.h
+++ b/source/kernel/gen_messaging/GEN_messaging.h
@@ -34,10 +34,6 @@
#include <stdio.h>
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#ifdef __cplusplus
extern "C" {
#endif
diff --git a/source/kernel/gen_system/GEN_DataCache.h b/source/kernel/gen_system/GEN_DataCache.h
index 09a58938cc6..7e4e0127c63 100644
--- a/source/kernel/gen_system/GEN_DataCache.h
+++ b/source/kernel/gen_system/GEN_DataCache.h
@@ -35,10 +35,6 @@
#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 afd6ed4f4c3..8fabc9a5516 100644
--- a/source/kernel/gen_system/GEN_HashedPtr.h
+++ b/source/kernel/gen_system/GEN_HashedPtr.h
@@ -33,10 +33,6 @@
#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 fba1b4ecbc6..a01d6c3f6be 100644
--- a/source/kernel/gen_system/GEN_Map.h
+++ b/source/kernel/gen_system/GEN_Map.h
@@ -32,10 +32,6 @@
#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 cd0a586b2e0..8fc1539f777 100644
--- a/source/kernel/gen_system/GEN_Matrix4x4.h
+++ b/source/kernel/gen_system/GEN_Matrix4x4.h
@@ -34,10 +34,6 @@
#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 60ed69ffdc5..88dc93528f2 100644
--- a/source/kernel/gen_system/GEN_SmartPtr.h
+++ b/source/kernel/gen_system/GEN_SmartPtr.h
@@ -37,10 +37,6 @@
#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 78f240f944d..2d0d7088b76 100644
--- a/source/kernel/gen_system/SYS_SingletonSystem.h
+++ b/source/kernel/gen_system/SYS_SingletonSystem.h
@@ -38,10 +38,6 @@
#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 5da3fd72f2d..4125b662d2b 100644
--- a/source/kernel/gen_system/SYS_System.h
+++ b/source/kernel/gen_system/SYS_System.h
@@ -35,10 +35,6 @@
#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);