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:
Diffstat (limited to 'source/gameengine/GamePlayer/common/windows')
-rw-r--r--source/gameengine/GamePlayer/common/windows/GPW_Canvas.h4
-rw-r--r--source/gameengine/GamePlayer/common/windows/GPW_Engine.h4
-rw-r--r--source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.h5
-rw-r--r--source/gameengine/GamePlayer/common/windows/GPW_System.h4
4 files changed, 15 insertions, 2 deletions
diff --git a/source/gameengine/GamePlayer/common/windows/GPW_Canvas.h b/source/gameengine/GamePlayer/common/windows/GPW_Canvas.h
index d08ec3c4fa5..41a7181c0d8 100644
--- a/source/gameengine/GamePlayer/common/windows/GPW_Canvas.h
+++ b/source/gameengine/GamePlayer/common/windows/GPW_Canvas.h
@@ -33,6 +33,10 @@
#ifndef _GPW_CANVAS_H_
#define _GPW_CANVAS_H_
+#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/common/windows/GPW_Engine.h b/source/gameengine/GamePlayer/common/windows/GPW_Engine.h
index d12b7cddda0..ae1bfc70418 100644
--- a/source/gameengine/GamePlayer/common/windows/GPW_Engine.h
+++ b/source/gameengine/GamePlayer/common/windows/GPW_Engine.h
@@ -33,9 +33,11 @@
#ifndef __GPW_ENGINE_H
#define __GPW_ENGINE_H
-
#include "GPC_Engine.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
class GPW_Engine : public GPC_Engine
{
diff --git a/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.h b/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.h
index 495ad956dd9..75eba82464b 100644
--- a/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.h
+++ b/source/gameengine/GamePlayer/common/windows/GPW_KeyboardDevice.h
@@ -36,9 +36,12 @@
#pragma warning (disable : 4786)
#include <windows.h>
-
#include "GPC_KeyboardDevice.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
/**
* Win32 implementation of GPC_KeyboardDevice.
* The contructor fills the keyboard code translation map.
diff --git a/source/gameengine/GamePlayer/common/windows/GPW_System.h b/source/gameengine/GamePlayer/common/windows/GPW_System.h
index e178ce3066a..3e4c92a40cd 100644
--- a/source/gameengine/GamePlayer/common/windows/GPW_System.h
+++ b/source/gameengine/GamePlayer/common/windows/GPW_System.h
@@ -38,6 +38,10 @@
#include "GPC_System.h"
+#ifdef HAVE_CONFIG_H
+#include <config.h>
+#endif
+
#if defined(__CYGWIN32__)
# define __int64 long long
#endif