]> git.tdb.fi Git - libs/gl.git/blobdiff - source/gl.h
Final touches of OS X support
[libs/gl.git] / source / gl.h
index c033a377aa7a1bd11ed75294fc3f67ae633b6f49..05844ba5f4666e5b048209ab9340bff69a601d68 100644 (file)
@@ -1,16 +1,15 @@
-/* $Id$
-
-This file is part of libmspgl
-Copyright © 2007  Mikko Rasa, Mikkosoft Productions
-Distributed under the LGPL
-*/
-
 #ifndef MSP_GL_GL_H_
 #define MSP_GL_GL_H_
 
 #ifdef WIN32
 #include <windows.h>
 #endif
+#ifdef __APPLE__
+#include <OpenGL/gl.h>
+#include <OpenGL/glext.h>
+#else
 #include <GL/gl.h>
+#include <GL/glext.h>
+#endif
 
 #endif