acinclude.m4: Accept GCJ and JIKES.

2007-06-04  Matthias Klose  <doko@ubuntu.com>

        * m4/acinclude.m4: Accept GCJ and JIKES.
        * configure: Regenerate.

From-SVN: r125310
This commit is contained in:
Matthias Klose
2007-06-04 10:05:52 +00:00
committed by Matthias Klose
parent 1a075af13d
commit b1d849c109
3 changed files with 61 additions and 43 deletions
+5 -2
View File
@@ -24,10 +24,13 @@ AC_DEFUN([CLASSPATH_FIND_JAVAC],
fi
AM_CONDITIONAL(FOUND_KJC, test "x${user_specified_javac}" = xkjc)
dnl if test "x${GCJ}" = x && test "x${JIKES}" = x && test "x${user_specified_javac}" != xkjc; then
if test "x${ECJ}" = x && test "x${JAVAC}" = x && test "x${user_specified_javac}" != xecj; then
## GCJ LOCAL
if test "x${GCJ}" = x && test "x${JIKES}" = x && test "x${ECJ}" = x \
&& test "x${JAVAC}" = x && test "x${user_specified_javac}" != xkjc
then
AC_MSG_ERROR([cannot find javac, try --with-ecj])
fi
## END GCJ LOCAL
])
dnl -----------------------------------------------------------