[Plib-cvs] plib/src/fnt fnt.h,1.6,1.7
Brought to you by:
sjbaker
From: Sebastian U. <ud...@us...> - 2002-08-30 18:21:14
|
Update of /cvsroot/plib/plib/src/fnt In directory usw-pr-cvs1:/tmp/cvs-serv6431/src/fnt Modified Files: fnt.h Log Message: Don't include OpenGL header files from ul.h any longer Index: fnt.h =================================================================== RCS file: /cvsroot/plib/plib/src/fnt/fnt.h,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- fnt.h 15 Aug 2002 00:04:42 -0000 1.6 +++ fnt.h 30 Aug 2002 18:21:11 -0000 1.7 @@ -25,6 +25,14 @@ #ifndef _FNT_H_ #define _FNT_H_ 1 +#ifdef __APPLE__ +# include <OpenGL/gl.h> +# include <OpenGL/glu.h> +#else +# include <GL/gl.h> +# include <GL/glu.h> +#endif + #include "sg.h" #define FNTMAX_CHAR 256 |