Fixed some 64bit platform build issues.

-omhis line, and those below, will be ignored--

M    server/configure.in
M    server/package/linux/CASA_auth_token_server.changes
M    server/package/linux/CASA_auth_token_server.spec.in
M    server/AuthTokenValidate/Svc/linux/envvars
M    server/AuthTokenValidate/Svc/linux/Makefile.am
This commit is contained in:
Juan Carlos Luciani
2006-11-28 11:47:04 +00:00
parent ee795f0f41
commit 00cffb071c
5 changed files with 23 additions and 13 deletions

View File

@@ -202,15 +202,13 @@ esac
#
# Check for IBM JVM
#
test_ibm_jvm=$(/usr/lib/jvm/jre-1.5.0/bin/java -version 2>&1 | grep -i ibm)
test_ibm_jvm=$(/usr/$LIB/jvm/jre-1.5.0/bin/java -version 2>&1 | grep -i ibm)
if test "$test_ibm_jvm" = ""
then
# Assume Sun JVM
JVM_VER=SUN
echo "SUN_JVM test_ibm_jvm=$test_ibm_jvm"
else
JVM_VER=IBM
echo "IBM_JVM test_ibm_jvm=$test_ibm_jvm"
fi
AC_SUBST(JVM_VER)
AM_CONDITIONAL(IBM_JVM, test "$JVM_VER" = IBM)