[Plib-cvs] plib/src/pui pu.h,1.117,1.118
Brought to you by:
sjbaker
From: Sebastian U. <ud...@us...> - 2002-08-30 18:21:14
|
Update of /cvsroot/plib/plib/src/pui In directory usw-pr-cvs1:/tmp/cvs-serv6431/src/pui Modified Files: pu.h Log Message: Don't include OpenGL header files from ul.h any longer Index: pu.h =================================================================== RCS file: /cvsroot/plib/plib/src/pui/pu.h,v retrieving revision 1.117 retrieving revision 1.118 diff -u -d -r1.117 -r1.118 --- pu.h 3 Aug 2002 22:44:48 -0000 1.117 +++ pu.h 30 Aug 2002 18:21:11 -0000 1.118 @@ -24,6 +24,14 @@ #ifndef _PU_H_ #define _PU_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 "fnt.h" |