#!/bin/sh
# Execute a Java program.
-# Copyright (C) 2001 Free Software Foundation, Inc.
+# Copyright (C) 2001, 2006 Free Software Foundation, Inc.
# Written by Bruno Haible <haible@clisp.cons.org>, 2001.
#
# This program is free software; you can redistribute it and/or modify
#
# The extra CLASSPATH must have been set prior to calling this script.
-CONF_JAVA='@JAVA@'
+CONF_JAVA='@CONF_JAVA@'
CONF_CLASSPATH='@CLASSPATH@'
-if test -n "$CONF_JAVA"; then
+if test -n "@HAVE_JAVA_ENVVAR@"; then
# Combine given CLASSPATH and configured CLASSPATH.
if test -n "$CLASSPATH"; then
CLASSPATH="$CLASSPATH${CONF_CLASSPATH:+@CLASSPATH_SEPARATOR@$CONF_CLASSPATH}"
unset JAVA_HOME
export CLASSPATH
if test -n "@HAVE_GIJ@"; then
- test -z "$JAVA_VERBOSE" || echo gij "$@"
- exec gij "$@"
+ # In this case, $CONF_JAVA is "gij".
+ test -z "$JAVA_VERBOSE" || echo "$CONF_JAVA $@"
+ exec $CONF_JAVA "$@"
else
if test -n "@HAVE_JAVA@"; then
- test -z "$JAVA_VERBOSE" || echo java "$@"
- exec java "$@"
+ # In this case, $CONF_JAVA is "java".
+ test -z "$JAVA_VERBOSE" || echo "$CONF_JAVA $@"
+ exec $CONF_JAVA "$@"
else
if test -n "@HAVE_JRE@"; then
- test -z "$JAVA_VERBOSE" || echo jre "$@"
- exec jre "$@"
+ # In this case, $CONF_JAVA is "jre".
+ test -z "$JAVA_VERBOSE" || echo "$CONF_JAVA $@"
+ exec $CONF_JAVA "$@"
else
if test -n "@HAVE_JVIEW@"; then
- test -z "$JAVA_VERBOSE" || echo jview "$@"
- exec jview "$@"
+ # In this case, $CONF_JAVA is "jview".
+ test -z "$JAVA_VERBOSE" || echo "$CONF_JAVA $@"
+ exec $CONF_JAVA "$@"
else
echo 'Java virtual machine not found, try installing gij or set $JAVA, then reconfigure' 1>&2
exit 1
-# javaexec.m4 serial 2 (gettext-0.13)
-dnl Copyright (C) 2001-2003 Free Software Foundation, Inc.
+# javaexec.m4 serial 3 (gettext-0.15)
+dnl Copyright (C) 2001-2003, 2006 Free Software Foundation, Inc.
dnl This file is free software; the Free Software Foundation
dnl gives unlimited permission to copy and/or distribute it,
dnl with or without modifications, as long as this notice is preserved.
yes
#endif
], CLASSPATH_SEPARATOR=';', CLASSPATH_SEPARATOR=':')
+ CONF_JAVA=
+ HAVE_JAVA_ENVVAR=
+ HAVE_GIJ=
+ HAVE_JAVA=
+ HAVE_JRE=
+ HAVE_JVIEW=
HAVE_JAVAEXEC=1
if test -n "$JAVA"; then
- ac_result="$JAVA"
+ HAVE_JAVA_ENVVAR=1
+ CONF_JAVA="$JAVA"
else
pushdef([AC_MSG_CHECKING],[:])dnl
pushdef([AC_CHECKING],[:])dnl
export CLASSPATH
if test -n "$HAVE_GIJ_IN_PATH" \
&& gij --version >/dev/null 2>/dev/null \
- ifelse([$1], , , [&& gij $1 >/dev/null 2>/dev/null]); then
+ ifelse([$1], , , [&& {
+ echo "$as_me:__oline__: gij $1" >&AS_MESSAGE_LOG_FD
+ gij $1 >&AS_MESSAGE_LOG_FD 2>&1
+ }]); then
HAVE_GIJ=1
- ac_result="gij"
+ CONF_JAVA="gij"
else
if test -n "$HAVE_JAVA_IN_PATH" \
&& java -version >/dev/null 2>/dev/null \
- ifelse([$1], , , [&& java $1 >/dev/null 2>/dev/null]); then
+ ifelse([$1], , , [&& {
+ echo "$as_me:__oline__: gij $1" >&AS_MESSAGE_LOG_FD
+ java $1 >&AS_MESSAGE_LOG_FD 2>&1
+ }]); then
HAVE_JAVA=1
- ac_result="java"
+ CONF_JAVA="java"
else
if test -n "$HAVE_JRE_IN_PATH" \
&& (jre >/dev/null 2>/dev/null || test $? = 1) \
- ifelse([$1], , , [&& jre $1 >/dev/null 2>/dev/null]); then
+ ifelse([$1], , , [&& {
+ echo "$as_me:__oline__: gij $1" >&AS_MESSAGE_LOG_FD
+ jre $1 >&AS_MESSAGE_LOG_FD 2>&1
+ }]); then
HAVE_JRE=1
- ac_result="jre"
+ CONF_JAVA="jre"
else
if test -n "$HAVE_JVIEW_IN_PATH" \
&& (jview -? >/dev/null 2>/dev/null || test $? = 1) \
- ifelse([$1], , , [&& jview $1 >/dev/null 2>/dev/null]); then
+ ifelse([$1], , , [&& {
+ echo "$as_me:__oline__: gij $1" >&AS_MESSAGE_LOG_FD
+ jview $1 >&AS_MESSAGE_LOG_FD 2>&1
+ }]); then
HAVE_JVIEW=1
- ac_result="jview"
+ CONF_JAVA="jview"
else
HAVE_JAVAEXEC=
- ac_result="no"
fi
fi
fi
CLASSPATH="$save_CLASSPATH"
])
fi
+ if test -n "$HAVE_JAVAEXEC"; then
+ ac_result="$CONF_JAVA"
+ else
+ ac_result="no"
+ fi
AC_MSG_RESULT([$ac_result])
- AC_SUBST(JAVA)
+ AC_SUBST(CONF_JAVA)
AC_SUBST(CLASSPATH)
AC_SUBST(CLASSPATH_SEPARATOR)
+ AC_SUBST(HAVE_JAVA_ENVVAR)
AC_SUBST(HAVE_GIJ)
AC_SUBST(HAVE_JAVA)
AC_SUBST(HAVE_JRE)