[Plib-cvs] plib/src/ssgAux ssgAux.h,1.13,1.14
Brought to you by:
sjbaker
From: Sebastian U. <ud...@us...> - 2002-08-30 18:21:15
|
Update of /cvsroot/plib/plib/src/ssgAux In directory usw-pr-cvs1:/tmp/cvs-serv6431/src/ssgAux Modified Files: ssgAux.h Log Message: Don't include OpenGL header files from ul.h any longer Index: ssgAux.h =================================================================== RCS file: /cvsroot/plib/plib/src/ssgAux/ssgAux.h,v retrieving revision 1.13 retrieving revision 1.14 diff -u -d -r1.13 -r1.14 --- ssgAux.h 28 Aug 2002 00:14:34 -0000 1.13 +++ ssgAux.h 30 Aug 2002 18:21:12 -0000 1.14 @@ -25,6 +25,14 @@ #ifndef _SSGAUX_H_ #define _SSGAUX_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" #include "ssg.h" #include "ssgaShapes.h" |