changeset 662:1ed5b5a0e7e3

Removing unneeded gltext.h include: * With the include in place, MSVC (2005 & 2008) will fail to build the latest trunk as glext.h is part of GLUT and does not ship with the Microsoft compiler * In case we would like to support the GL extensions, we should ship GLUT includes and the library with the win32 devkit
author mvbarracuda@33b003aa-7bff-0310-803a-e67f0ece8222
date Sat, 06 Nov 2010 11:13:21 +0000
parents e3140f01749d
children 6e53cc43402e
files engine/core/video/opengl/fife_opengl.h
diffstat 1 files changed, 0 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- a/engine/core/video/opengl/fife_opengl.h	Fri Nov 05 15:21:10 2010 +0000
+++ b/engine/core/video/opengl/fife_opengl.h	Sat Nov 06 11:13:21 2010 +0000
@@ -29,7 +29,6 @@
 #if defined( __unix__ )
 #include <GL/gl.h>
 #include <GL/glu.h>
-#include <GL/glext.h>
 #endif
 
 // Win32
@@ -39,13 +38,11 @@
 #include <windows.h>
 #include <GL/gl.h>
 #include <GL/glu.h>
-#include <GL/glext.h>
 #undef DELETE
 // MinGW
 #else
 #include <GL/gl.h>
 #include <GL/glu.h>
-#include <GL/glext.h>
 #endif
 #endif