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:
authorStefan Gartner <stefang@aon.at>2003-01-07 03:18:59 +0300
committerStefan Gartner <stefang@aon.at>2003-01-07 03:18:59 +0300
commit3531f874e0a4168d15f5d321a85f86ba3a37bfac (patch)
tree504f15190d2e2643e5ecaed7077b5cb2ee928eb0 /source/gameengine/BlenderRoutines/KX_BlenderGL.cpp
parent3a0c7e4a8a734578778979194757bd134dd01731 (diff)
added a buch of
#ifdef __APPLE__ #include <OpenGL/gl.h> #else #include <GL/gl.h> #endif (also for <GL/glu.h>) so that people don't have to create symlinks in /System/Library/Frameworks/OpenGL.framework on Mac OS X (Charles Wardlaw)
Diffstat (limited to 'source/gameengine/BlenderRoutines/KX_BlenderGL.cpp')
-rw-r--r--source/gameengine/BlenderRoutines/KX_BlenderGL.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp b/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp
index d8399fd3351..92c2519c583 100644
--- a/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp
+++ b/source/gameengine/BlenderRoutines/KX_BlenderGL.cpp
@@ -74,8 +74,11 @@ extern "C" {
/* end of blender block */
-
+#ifdef __APPLE__
+#include <OpenGL/gl.h>
+#else
#include <GL/gl.h>
+#endif
void BL_warp_pointer(int x,int y)