I've been looking at the window-opengl tutorial ie...
//http://www.sfml-dev.org/tutorials/1.3/window-opengl.php
which I'm compiling with...
g++ -o window-opengl window-opengl.cpp -lsfml-graphics -lsfml-window -lsfml-system
The sticking point seems to be the line...
gluPerspective(90.f, 1.f, 1.f, 500.f);
ls /usr/lib/libGLU* gives me...
/usr/lib/libGLU.a
/usr/lib/libGLU.so.1 DIR
/usr/lib/libGLU.so DIR
/usr/lib/libGLU.so.1.3.070300
so libGLU looks to exist.
I tried compiling with "-lglu" added in but this didn't work.
I'm not sure if this is the right specification or if its got to be in a certain place in the line.
Any suggestions much appreciated.