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/common/unix
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/common/unix')
-rw-r--r--source/gameengine/GamePlayer/common/unix/GPU_Canvas.cpp5
-rw-r--r--source/gameengine/GamePlayer/common/unix/GPU_Engine.cpp6
-rw-r--r--source/gameengine/GamePlayer/common/unix/GPU_KeyboardDevice.cpp4
-rw-r--r--source/gameengine/GamePlayer/common/unix/GPU_System.cpp4
4 files changed, 14 insertions, 5 deletions
diff --git a/source/gameengine/GamePlayer/common/unix/GPU_Canvas.cpp b/source/gameengine/GamePlayer/common/unix/GPU_Canvas.cpp
index 29f0bffe1c5..d393f4196aa 100644
--- a/source/gameengine/GamePlayer/common/unix/GPU_Canvas.cpp
+++ b/source/gameengine/GamePlayer/common/unix/GPU_Canvas.cpp
@@ -31,9 +31,12 @@
*/
//#include <iostream>
-
#include "GPU_Canvas.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
GPU_Canvas::GPU_Canvas(KXH_plugin_handle p, int width, int height)
: GPC_Canvas(width, height), m_plugin(p)
{
diff --git a/source/gameengine/GamePlayer/common/unix/GPU_Engine.cpp b/source/gameengine/GamePlayer/common/unix/GPU_Engine.cpp
index 56b1340eb92..6bff9f20a6a 100644
--- a/source/gameengine/GamePlayer/common/unix/GPU_Engine.cpp
+++ b/source/gameengine/GamePlayer/common/unix/GPU_Engine.cpp
@@ -32,11 +32,8 @@
#include <assert.h>
#include <unistd.h>
-
#include "GPU_Engine.h"
-
#include "GPC_MouseDevice.h"
-
#include "GPU_Canvas.h"
#include "GPU_KeyboardDevice.h"
#include "GPU_System.h"
@@ -56,6 +53,9 @@
#include "GPC_RenderTools.h"
#include "GPC_RawImage.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
void Redraw(GPU_Engine *engine); // -the- redraw function
diff --git a/source/gameengine/GamePlayer/common/unix/GPU_KeyboardDevice.cpp b/source/gameengine/GamePlayer/common/unix/GPU_KeyboardDevice.cpp
index 125adcc4b7b..bdd04fadb9b 100644
--- a/source/gameengine/GamePlayer/common/unix/GPU_KeyboardDevice.cpp
+++ b/source/gameengine/GamePlayer/common/unix/GPU_KeyboardDevice.cpp
@@ -32,6 +32,10 @@
#include <iostream.h>
#include "GPU_KeyboardDevice.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
void GPU_KeyboardDevice::register_X_key_down_event(KeySym k)
{
ConvertEvent(k, 1);
diff --git a/source/gameengine/GamePlayer/common/unix/GPU_System.cpp b/source/gameengine/GamePlayer/common/unix/GPU_System.cpp
index d7484c97dc2..eb2163f08bc 100644
--- a/source/gameengine/GamePlayer/common/unix/GPU_System.cpp
+++ b/source/gameengine/GamePlayer/common/unix/GPU_System.cpp
@@ -31,9 +31,11 @@
*/
#include <sys/time.h>
-
#include "GPU_System.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
static struct timeval startTime;
static int startTimeDone = 0;