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:
authorJean-Luc Peurière <jlp@nerim.net>2007-07-11 01:04:32 +0400
committerJean-Luc Peurière <jlp@nerim.net>2007-07-11 01:04:32 +0400
commit1104a39f111b05f5897497c7a424d8d277961093 (patch)
tree2cd920e659ab8bdbdb2ba8ab0a4c6ff097e6e485 /intern/ghost
parent198513c49f720897d39c10c1fcc656e3c60e63bc (diff)
forgot a needed include in the patch
Diffstat (limited to 'intern/ghost')
-rw-r--r--intern/ghost/intern/GHOST_NDOFManager.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/intern/ghost/intern/GHOST_NDOFManager.cpp b/intern/ghost/intern/GHOST_NDOFManager.cpp
index e4a3bc230d6..f88016b6b3e 100644
--- a/intern/ghost/intern/GHOST_NDOFManager.cpp
+++ b/intern/ghost/intern/GHOST_NDOFManager.cpp
@@ -27,6 +27,10 @@
// the variable is outside the class because it must be accessed from plugin
static volatile GHOST_TEventNDOFData currentNdofValues = {0,0,0,0,0,0,0,0,0,0,0};
+#if !defined(_WIN32) && !defined(__APPLE__)
+#include "GHOST_SystemX11.h"
+#endif
+
namespace
{
GHOST_NDOFLibraryInit_fp ndofLibraryInit = 0;