I am in an openGL class. The examples that the teacher provides are compiling on the university schools systems. The won't on my new fedora install (the university also uses fedora).
Basically I think that there are different GL libs installed???
when i type make lines (to make lines.c) it outputs this info:
gcc -O -Wall -g -gstabs -I/usr/include/GL -L/usr/lib -L/usr/X11R6/lib -lglut -lGLU -lGL -lXmu -lXi -lXext -lX11 -lm -o lines lines.c
/usr/bin/ld: cannot find -lglut
collect2: ld returned 1 exit status
make: *** [lines] Error 1
So I think there is a problem with the -lglut param. I have freeglut.h in /usr/include/GL, but no flut.h.
That can I get do to get this to comiple?
Here is a dir with the makefile and some c files that should comiple (I have seen them compile in class)
http://onyx.boisestate.edu/~tcole/cs...ll04/demo/ogl/
Thanks for any help