Hi!

1. change checkVersions:

.....
    ldd $execName > $lddOut
    libcMainVer=`getLibName libc.so.6 $lddOut` <--- this must be changed.
    case $libcMainVer in
        libc*.5)
            checkFun=checkLibc5Version
            ;;

        libc*.6)
            checkFun=checkGlibcVersion
            ;;
    esac


    $checkFun $lddOut
    result=$?

    rm -f $lddOut

    return $result
}

2. Link libc.so.6 and libdl.so.2 to /lib

Then the glibc-JDK will work on Systems which use the old libc5 as main libc.

Ciao!

                                                    
--------------------------------------------------------   
-> E-Mail: Sven Werner <[EMAIL PROTECTED]> 
           Sven Werner <[EMAIL PROTECTED]>
-> www   : http://www.ping.de/sites/hawaii-datteln   
--------------------------------------------------------

Reply via email to