Re: [Plib-devel] Updated configure script in CVS
Brought to you by:
sjbaker
From: Norman V. <nh...@ca...> - 2002-08-30 21:04:01
|
Sebastian Ude> > Then, the solution should be rather easy: > > In fnt.h, pui.h, ssg.h and ssgAux.h, try to move the block: > > #ifdef __APPLE__ > # include <OpenGL/gl.h> > # include <OpenGL/glu.h> > #else > # include <GL/gl.h> > # include <GL/glu.h> > #endif > < nitpick > can't that just be #ifdef __APPLE__ # include <OpenGL/glu.h> #else # include <GL/glu.h> #endif AFAIK <GL/glu.h> #includes "gl.h" and <GL/glut.h> #includes "glu.h" < /nitpick > trying-to-minimze-compile-times'ly yr's Norman |