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>2010-04-18 14:28:37 +0400
committerCampbell Barton <ideasman42@gmail.com>2010-04-18 14:28:37 +0400
commit8f1500da005e4f84fd593492822c6d99e768c354 (patch)
tree942f6960b50fb03430f4dcd934837213d7d76695 /source/kernel
parent45441c07d4609493aecf265b64ad0c108722e9db (diff)
remove config.h references, was added for automake build system rev around 124-126 but isnt used by any build systems now.
Diffstat (limited to 'source/kernel')
-rw-r--r--source/kernel/gen_messaging/intern/messaging.c4
-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
5 files changed, 0 insertions, 20 deletions
diff --git a/source/kernel/gen_messaging/intern/messaging.c b/source/kernel/gen_messaging/intern/messaging.c
index ad20e0664af..b1f8a5b8e56 100644
--- a/source/kernel/gen_messaging/intern/messaging.c
+++ b/source/kernel/gen_messaging/intern/messaging.c
@@ -31,10 +31,6 @@
#include "GEN_messaging.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
FILE* GEN_errorstream = NULL;
FILE* GEN_userstream = NULL;
diff --git a/source/kernel/gen_system/GEN_HashedPtr.cpp b/source/kernel/gen_system/GEN_HashedPtr.cpp
index a6a94a1406b..4713c9d5eed 100644
--- a/source/kernel/gen_system/GEN_HashedPtr.cpp
+++ b/source/kernel/gen_system/GEN_HashedPtr.cpp
@@ -29,10 +29,6 @@
*/
#include "GEN_HashedPtr.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
#include "BLO_sys_types.h" // for intptr_t support
//
diff --git a/source/kernel/gen_system/GEN_Matrix4x4.cpp b/source/kernel/gen_system/GEN_Matrix4x4.cpp
index d1a8f3510c7..72926ce9c39 100644
--- a/source/kernel/gen_system/GEN_Matrix4x4.cpp
+++ b/source/kernel/gen_system/GEN_Matrix4x4.cpp
@@ -28,10 +28,6 @@
#include "GEN_Matrix4x4.h"
-#ifdef HAVE_CONFIG_H
-#include <config.h>
-#endif
-
GEN_Matrix4x4::GEN_Matrix4x4()
{
Identity();
diff --git a/source/kernel/gen_system/SYS_SingletonSystem.cpp b/source/kernel/gen_system/SYS_SingletonSystem.cpp
index 08476a93167..0b5cfe7273a 100644
--- a/source/kernel/gen_system/SYS_SingletonSystem.cpp
+++ b/source/kernel/gen_system/SYS_SingletonSystem.cpp
@@ -31,10 +31,6 @@
#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 9504e2917f9..b2e27f179e6 100644
--- a/source/kernel/gen_system/SYS_System.cpp
+++ b/source/kernel/gen_system/SYS_System.cpp
@@ -31,10 +31,6 @@
#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();