Hello. I got same problem and solved it. And this is my first mail
to java-linux Mailing List. I'm a japanese student, so my English may
be strange. I'm sorry. m(..)m
mshen> ...Checkversions: {isGreaterOrEqual: command not found
Edit the bin/checkVersions file and modify
from
> if isGreaterOrEqual "$libdlVers" 1.9.6 ||
> {isGreaterOrEqual "$libcVers" 1.5.44 &&
> isGreaterOrEqual "$libdlVers" 1.9.9}
to
> if isGreaterOrEqual "$libdlVers" 1.9.6 ||
> { isGreaterOrEqual "$libcVers" 1.5.44 &&
> isGreaterOrEqual "$libdlVers" 1.9.9 }
You can find with emacs's i-serch "{isGreater" easily.
mshen> ..bin/i586/green_threads/java: can't load library 'libXp.so.6'.
This message tells you to use X11R6.4. But you can solve this problem
with installing only libXp.so.6 into your linux box.
mshen> The Linux version is Redhat 4.2. Kernel is 2.0.30
I'm sorry, I don't know RedHat Linux. As for me, for example, I'm a
Slackware user, getting a x332bin.tgz from slackware site(
www.cdrom.com ). And I installed only libXp.so.6.2 like following.
# tar xvzf x332.tgz -C /tmp
# cp /tmp/usr/X11/lib/libXp.so.6.2 /usr/X11/lib
# cd /usr/X11/lib
# ln -sf libXp.so.6.2 libXp.so.6
# /sbin/ldconfig
Good luck.
Hirotaka Igarashi
[EMAIL PROTECTED]