On Sun, 20 Apr 2003 13:31:15 +0100 Ian Douglas alug@k1ngph1cher.com wrote:
bash-2.05a$ ls /usr/local/lib X11 libaspell.so.15 libpspell.so libaspell.la libaspell.so.15.0.2 libpspell.so.15 libaspell.so libpspell.la libpspell.so.15.0.2
then...
configure:16202: ./conftest ./conftest: error while loading shared libraries: libaspell.so.15: cannot open shared object file: No such file or directory configure:16205: $? = 127 configure: program exited with status 127
I looks like the program is trying to load the shared library by using the name libaspell.so.15 whereas the library is probably actually in the file libaspell.so.15.0.2 libaspell.so.15 should be a symbolic link to libaspell.so.15.0.2 - if it isn't then this is probably the problem - you just need to remove libaspell.so.15 and re-link it.
Steve.