I am trying to install freeglut on my computer running Linux Mint. I follow the steps on this website: http://freeglut.sourceforge.net/docs/install.php. When I do make all
in the src directory, it gives the following error:
fatal error: GL/gl.h
This error was given by ../include/GL/freeglut_std.h. Upon inspection, the include/GL directory is indeed devoid of any gl.h file. It is also missing glu.h, which freeglut_std.h also tries to #include
. What should I do about this? Why are gl.h and glu.h missing?
make
before or after theconfigure
script?configure
should have informed you of the missing headers. – Dissever