Update of /cvsroot/plib/plib/src/pui
In directory sc8-pr-cvs1:/tmp/cvs-serv20761/plib/src/pui
Modified Files:
pu.cxx
Log Message:
Fixed some conditional compilation for Windoze.
Index: pu.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/pui/pu.cxx,v
retrieving revision 1.62
retrieving revision 1.63
diff -u -d -r1.62 -r1.63
--- pu.cxx 30 Nov 2002 00:41:49 -0000 1.62
+++ pu.cxx 1 Dec 2002 18:21:47 -0000 1.63
@@ -26,7 +26,9 @@
#if defined(UL_MACINTOSH)
# include <agl.h>
#elif defined(UL_MAC_OSX)
-# include <OpenGL/CGLCurrent.h>
+# include <OpenGL/CGLCurrent.h>
+#elif defined(UL_WIN32)
+ /* Nothing */
#else
# include <GL/glx.h>
#endif
|