Removed hard dependency on IBM's JVM.

This commit is contained in:
Juan Carlos Luciani
2006-11-18 07:10:14 +00:00
parent ff0b8df96b
commit 0332b6610e
7 changed files with 65 additions and 10 deletions

View File

@@ -199,6 +199,21 @@ case $host_os in
;;
esac
#
# Check for IBM JVM
#
case $jvm_ver in
sun*)
JVM_VER=SUN
;;
ibm*)
JVM_VER=IBM
;;
esac
AC_SUBST(JVM_VER)
AM_CONDITIONAL(IBM_JVM, test "$JVM_VER" = IBM)
#
# Handle --enable-debug
#