From: Jonathan B. <jbr...@ea...> - 2003-05-12 23:52:32
|
On Mon, 2003-05-12 at 19:06, ima...@gm... wrote: > > Half-way down config.log, you should see a much more verbose echo of > > this output with detailed information regarding the failure. Please > > send me that information, and we can see exactly what failed. > > configure:8434: gcc -o conftest -g -O2 conftest.c -L/usr/X11R6/lib -lgtk > -lg > dk -lXi -lXext -lX11 -lm -lglib -lGLU -lGL >&5 > /usr/lib/libGLcore.so.1: undefined reference to `__nvsym13208' > /usr/lib/libGL.so: undefined reference to `__nvsym04850' > /usr/lib/libGLcore.so.1: undefined reference to `__nvsym13192' > /usr/lib/libGL.so: undefined reference to `__nvsym04843' > /usr/lib/libGLcore.so.1: undefined reference to `__nvsym02925' > /usr/lib/libGL.so: undefined reference to `__nvsym03706' > /usr/lib/libGL.so: undefined reference to `__nvsym03650' > /usr/lib/libGL.so: undefined reference to `__nvsym03657' These symbols are defined in the NVIDIA-glx package. Exactly which version of the driver did you install, and how did you do it? If you followed either of the Debian methods, you should have generated both a nvidia-glx....deb and and nvidia-glx-dev....deb. Did you install them both? I suspect that your libGL and/or libGLcore symlinks got mixed up somehow. >From /usr/lib, typing `ls -l libGL.so* libGLcore.so*` should produce symlinks like this when it is right, such that libGL.so and libGLcore.so.1 ultimately point to version-matching libs: /usr/lib/libGL.so -> libGL.so.1 /usr/lib/libGL.so.1 -> libGL.so.1.0.2880 /usr/lib/libGL.so.1.0.2880 /usr/lib/libGLcore.so.1 -> libGL.so.1.0.2880 /usr/lib/libGLcore.so.1.0.2880 If there is some kind of version mismatch, you will need to fix your links. HTH, Jonathan Brandmeyer |