Update of /cvsroot/plib/plib/src/puAux
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv16202/plib/src/puAux
Modified Files:
puAuxCompass.cxx
Log Message:
Fixed a couple of MacOSX compilation problems.
Index: puAuxCompass.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/puAux/puAuxCompass.cxx,v
retrieving revision 1.1
retrieving revision 1.2
diff -u -d -r1.1 -r1.2
--- puAuxCompass.cxx 28 Feb 2004 00:54:03 -0000 1.1
+++ puAuxCompass.cxx 28 Feb 2004 22:35:03 -0000 1.2
@@ -24,7 +24,12 @@
#include "puAux.h"
-#include <GL/glu.h>
+
+#ifdef UL_MAC_OSX
+# include <OpenGL/gl.h>
+#else
+# include <GL/gl.h>
+#endif
UL_RTTI_DEF1(puaCompass,puObject)
|