2 # Execute a Java program.
4 # Copyright (C) 2001-2020 Free Software Foundation, Inc.
5 # Written by Bruno Haible <haible@clisp.cons.org>, 2001.
7 # This program is free software: you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 3 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <https://www.gnu.org/licenses/>.
20 # This uses the same choices as javaexec.c, but instead of relying on the
21 # environment settings at run time, it uses the environment variables
22 # present at configuration time.
24 # This is a separate shell script, because it must be able to unset JAVA_HOME
25 # in some cases, which a simple shell command cannot do.
27 # The extra CLASSPATH must have been set prior to calling this script.
29 CONF_JAVA
='@CONF_JAVA@'
30 CONF_CLASSPATH
='@CLASSPATH@'
31 if test -n "@HAVE_JAVA_ENVVAR@"; then
32 # Combine given CLASSPATH and configured CLASSPATH.
33 if test -n "$CLASSPATH"; then
34 CLASSPATH
="$CLASSPATH${CONF_CLASSPATH:+@CLASSPATH_SEPARATOR@$CONF_CLASSPATH}"
36 CLASSPATH
="$CONF_CLASSPATH"
39 test -z "$JAVA_VERBOSE" ||
echo "$CONF_JAVA $@"
44 if test -n "@HAVE_GIJ@"; then
45 # In this case, $CONF_JAVA is "gij".
46 test -z "$JAVA_VERBOSE" ||
echo "$CONF_JAVA $@"
49 if test -n "@HAVE_JAVA@"; then
50 # In this case, $CONF_JAVA is "java".
51 test -z "$JAVA_VERBOSE" ||
echo "$CONF_JAVA $@"
54 if test -n "@HAVE_JRE@"; then
55 # In this case, $CONF_JAVA is "jre".
56 test -z "$JAVA_VERBOSE" ||
echo "$CONF_JAVA $@"
59 if test -n "@HAVE_JVIEW@"; then
60 # In this case, $CONF_JAVA is "jview".
61 test -z "$JAVA_VERBOSE" ||
echo "$CONF_JAVA $@"
64 echo 'Java virtual machine not found, try installing gij or set $JAVA, then reconfigure' 1>&2