1 # ===========================================================================
2 # https://www.gnu.org/software/autoconf-archive/ax_prog_jar.html
3 # ===========================================================================
11 # AX_PROG_JAR tests for an existing jar program. It uses the environment
12 # variable JAR then tests in sequence various common jar programs.
14 # If you want to force a specific compiler:
16 # - at the configure.in level, set JAR=yourcompiler before calling
19 # - at the configure level, setenv JAR
21 # You can use the JAR variable in your Makefile.in, with @JAR@.
23 # Note: This macro depends on the autoconf M4 macros for Java programs. It
24 # is VERY IMPORTANT that you download that whole set, some macros depend
25 # on other. Unfortunately, the autoconf archive does not support the
26 # concept of set of macros, so I had to break it for submission.
28 # The general documentation of those macros, as well as the sample
29 # configure.in, is included in the AX_PROG_JAVA macro.
33 # Copyright (c) 2008 Egon Willighagen <e.willighagen@science.ru.nl>
35 # Copying and distribution of this file, with or without modification, are
36 # permitted in any medium without royalty provided the copyright notice
37 # and this notice are preserved. This file is offered as-is, without any
42 AU_ALIAS([AC_PROG_JAR], [AX_PROG_JAR])
43 AC_DEFUN([AX_PROG_JAR],[
44 AS_IF([test "x$JAVAPREFIX" = x],
45 [test "x$JAR" = x && AC_CHECK_PROGS([JAR], [jar])],
46 [test "x$JAR" = x && AC_CHECK_PROGS([JAR], [jar], [], [$JAVAPREFIX/bin])])
47 test "x$JAR" = x && AC_MSG_ERROR([no acceptable jar program found in \$PATH])