Edit

kc3-lang/automake/m4/gcj.m4

Branch :

  • Show log

    Commit

  • Author : Tom Tromey
    Date : 1999-04-11 10:22:50
    Hash : e7d36445
    Message : * m4/gcj.m4 (AM_PROG_GCJ): Use AC_CHECK_PROGS, not AC_CHECK_PROG.

  • m4/gcj.m4
  • dnl Check for Java compiler.
    dnl For now we only handle the GNU compiler.
    
    AC_DEFUN(AM_PROG_GCJ,[
    AC_CHECK_PROGS(GCJ, gcj, gcj)
    test -z "$GCJ" && AC_MSG_ERROR([no acceptable gcj found in \$PATH])
    if test "x${GCJFLAGS+set}" = xset; then
       GCJFLAGS="-g -O2"
    fi
    AC_SUBST(GCJFLAGS)
    ])