Update of /cvsroot/plib/plib/src/fnt
In directory sc8-pr-cvs1:/tmp/cvs-serv20761/plib/src/fnt
Modified Files:
fntTXF.cxx
Log Message:
Fixed some conditional compilation for Windoze.
Index: fntTXF.cxx
===================================================================
RCS file: /cvsroot/plib/plib/src/fnt/fntTXF.cxx,v
retrieving revision 1.18
retrieving revision 1.19
diff -u -d -r1.18 -r1.19
--- fntTXF.cxx 30 Nov 2002 00:41:49 -0000 1.18
+++ fntTXF.cxx 1 Dec 2002 18:21:46 -0000 1.19
@@ -27,7 +27,9 @@
#ifdef 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
|