git-svn-id: https://svn.code.sf.net/p/flaim/code/trunk@1110 0109f412-320b-0410-ab79-c3e0c5ffbbe6
29 lines
1.0 KiB
Plaintext
29 lines
1.0 KiB
Plaintext
# FLM_PROG_TRY_JAVA(["quiet"])
|
|
# ---------------------------
|
|
# FLM_PROG_TRY_JAVA test for an existing JAVA virtual machine.
|
|
# It uses or sets the environment variable JAVA.
|
|
#
|
|
# If no arguments are given to this macro, and no java virtual
|
|
# machine can be found, it prints a warning message to STDOUT
|
|
# and to the config.log file. If the "quiet" argument is passed,
|
|
# then only the normal "check" line is displayed. Any other
|
|
# argument is considered by autoconf to be an error at expansion
|
|
# time.
|
|
#
|
|
# Makes the JAVA variable precious to Autoconf. You can
|
|
# use the JAVA variable in your Makefile.in files with
|
|
# @JAVA@.
|
|
#
|
|
# Author: John Calcote <john.calcote@gmail.com>
|
|
# Modified: 2009-08-30
|
|
# License: AllPermissive
|
|
#
|
|
AC_DEFUN([FLM_PROG_TRY_JAVA],
|
|
[AC_ARG_VAR([JAVA], [Java virtual machine])dnl
|
|
AC_CHECK_PROGS([JAVA], [kaffe java])
|
|
ifelse([$1],,
|
|
[if test -z "$JAVA"; then
|
|
AC_MSG_WARN([Java VM not found - continuing without JVM])
|
|
fi], [$1], [quiet],, [m4_fatal([Invalid option '$1' in $0])])
|
|
])# FLM_PROG_TRY_JAVA
|