SUN Web server installation complains about termcap library on SUSE SLES 9
I've faced the problem during SUN web server 6.2 installation on SUSE SLES 9. When I start setup error message is shown:
/tmp/sunwebinstall/./.setup: error while loading shared libraries: libtermcap.so.2: cannot open shared object file: No such file or directory
termcap is installed ok.
# rpm -qa | grep termcap
termcap-2.0.8-876.1
strace shows that the library itself can be found by setup but it seems that version is not compatible (some part of the file is read, but after that file is closed and search for library is continued):
open("/lib/sse2/libtermcap.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
stat64(0xffffb630, 0xffffb6b4) = -1 ENOENT (No such file or directory)
open("/lib/libtermcap.so.2", O_RDONLY) = 3
read(3, "\177ELF\2\1\1\0\0\0\0\0\0\0\0\0\3\0>\0\1\0\0\0 \23\0\0"..., 512) = 512
close(3)= 0
stat64(0xffffb630, 0xffffb6b4) = 0
open("/usr/lib/tls/i686/sse2/libtermcap.so.2", O_RDONLY) = -1 ENOENT (No such file or directory)
Can anybody help me with this issue?
Thank you in advance

