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

[1110 byte] By [rkonoval] at [2007-11-26 10:48:58]
# 1
The problem is solved. SUN web server requires 32 bit version of the libtermcap.
rkonoval at 2007-7-7 3:01:29 > top of Java-index,General,Installation...
# 2
hmmm.now if I can just figure out how to force gentoo to emerge a 32-bit libtermcap-compat instead of an amd64 I'll be all setcheers
smaring at 2007-7-7 3:01:29 > top of Java-index,General,Installation...
# 3
I installed a 32-bit chroot environment inside my 64-bit Gentoo and emerged libtermcap-compat and lib-compat. The install seems to be going smoothly now inside there.
smaring at 2007-7-7 3:01:29 > top of Java-index,General,Installation...