On Tuesday 27 April 2004 16:08, Papapetrou Athanasios wrote: > Which libraries do I need to compile an OpenGL application in c++ using > g++? > Where can I find them? > Thanx in advance > Thanos Papapetrou They should all be there on your system if you installed all the devel packages. The standard libraries OpenGL libraries are GLU and GL which should be on your system as libGLU.so and libGL.so. Try: locate libGLU locate libGL You may also need to explicitly link with the X11 libraries, but I just tried an example and didn't need to. You may also want the glut libraries. I think they're being replaced (or may have already) with freeglut in Fedora. Dave