[HOpenGL] Starting it all over again

Sven Panne Sven_Panne@BetaResearch.de
Tue, 07 Jan 2003 10:33:45 +0100


Andre Furtado wrote:
> [...] Now I'm stuck in the following problem:
> 
> checking for GL/glut.h... no
> configure: error: GLUT header not found

Looking at your config.log, this is exactly your problem. Do you
have a /usr/include/GL/glut.h in Cygwin? Does something like

   #include <GL/glut.h>
   int main () {
      glEnd();
      return 0;
   }

compile and link under Cygwin? Perhaps the GLUT stuff is in some
"Graphics" package, but I can't remember...

Cheers,
   S.