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/gameengine/GamePlayer/ghost
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/gameengine/GamePlayer/ghost')
-rw-r--r--source/gameengine/GamePlayer/ghost/GPG_Application.cpp4
-rw-r--r--source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp5
-rw-r--r--source/gameengine/GamePlayer/ghost/GPG_KeyboardDevice.cpp4
-rw-r--r--source/gameengine/GamePlayer/ghost/GPG_System.cpp5
-rw-r--r--source/gameengine/GamePlayer/ghost/GPG_ghost.cpp4
5 files changed, 17 insertions, 5 deletions
diff --git a/source/gameengine/GamePlayer/ghost/GPG_Application.cpp b/source/gameengine/GamePlayer/ghost/GPG_Application.cpp
index 07ed803b205..17e9e77b5d3 100644
--- a/source/gameengine/GamePlayer/ghost/GPG_Application.cpp
+++ b/source/gameengine/GamePlayer/ghost/GPG_Application.cpp
@@ -31,6 +31,10 @@
* GHOST Blender Player application implementation file.
*/
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifdef WIN32
#pragma warning (disable:4786) // suppress stl-MSVC debug info warning
#endif
diff --git a/source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp b/source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp
index da71d40acc0..2d378473619 100644
--- a/source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp
+++ b/source/gameengine/GamePlayer/ghost/GPG_Canvas.cpp
@@ -31,11 +31,12 @@
*/
#include "GPG_Canvas.h"
-
#include <assert.h>
-
#include "GHOST_ISystem.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
GPG_Canvas::GPG_Canvas(GHOST_IWindow* window)
: GPC_Canvas(0, 0), m_window(window)
diff --git a/source/gameengine/GamePlayer/ghost/GPG_KeyboardDevice.cpp b/source/gameengine/GamePlayer/ghost/GPG_KeyboardDevice.cpp
index 7971a86bcbc..0e474827ad5 100644
--- a/source/gameengine/GamePlayer/ghost/GPG_KeyboardDevice.cpp
+++ b/source/gameengine/GamePlayer/ghost/GPG_KeyboardDevice.cpp
@@ -31,9 +31,11 @@
* GHOST Blender Player keyboard device implementation.
*/
-
#include "GPG_KeyboardDevice.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
GPG_KeyboardDevice::GPG_KeyboardDevice(void)
{
diff --git a/source/gameengine/GamePlayer/ghost/GPG_System.cpp b/source/gameengine/GamePlayer/ghost/GPG_System.cpp
index 6084505bbba..d9f59f8b36a 100644
--- a/source/gameengine/GamePlayer/ghost/GPG_System.cpp
+++ b/source/gameengine/GamePlayer/ghost/GPG_System.cpp
@@ -32,11 +32,12 @@
*/
#include "GPG_System.h"
-
#include <assert.h>
-
#include "GHOST_ISystem.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
GPG_System::GPG_System(GHOST_ISystem* system)
: m_system(system)
diff --git a/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp b/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
index df683cb91cf..f725d5c0dd3 100644
--- a/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
+++ b/source/gameengine/GamePlayer/ghost/GPG_ghost.cpp
@@ -34,6 +34,10 @@
#include <iostream>
#include <math.h>
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#ifdef __linux__
#ifdef __alpha__
#include <signal.h>