I've been trying to install Jahshaka and got up to openlibraries. The configure script had a small problem; it couldn't find libGLU. I wasn't sure why, so I just ran ldconfig and tried again. No dice. So a friend turned me on to some example OpenGL programs to try linking glut against, nothing. Basically, none of the libraries in /usr/X11R6/lib, from -lX11 and -lXm to -lGLU to -lglut aren't being found. But here's the weird part:
Code:
$ cat /etc/ld.so.conf
/usr/local/lib
/usr/X11R6/lib
/usr/i486-slackware-linux/lib
/opt/kde/lib
/usr/lib/qt/lib
Code:
# ldconfig -p | grep -i glu
libglut.so.3 (libc6) => /usr/X11R6/lib/libglut.so.3
libglut.so (libc6) => /usr/X11R6/lib/libglut.so
libGLU.so.1 (libc6) => /usr/X11R6/lib/libGLU.so.1
libGLU.so (libc6) => /usr/X11R6/lib/libGLU.so
Does anyone know what's going on?