> There's a utility that checks cross linking of libraries. You could
> run it against the program that's complaining and check where it's
> looking for the file. It might just be a location/path issue.
Sounds like we're referring to ldd(1), e.g.
% ldd `which lynx`
libz.so.1 => /usr/lib/libz.so.1 (0x40023000)
libncurses.so.5 => /usr/lib/libncurses.so.5 (0x40032000)
libssl.so.2 => /lib/libssl.so.2 (0x40071000)
libcrypto.so.2 => /lib/libcrypto.so.2 (0x400a1000)
libc.so.6 => /lib/libc.so.6 (0x40178000)
libdl.so.2 => /lib/libdl.so.2 (0x402a3000)
/lib/ld-linux.so.2 => /lib/ld-linux.so.2 (0x40000000)
Randall
<www.whizman.com>