From: Braden M. <br...@us...> - 2006-11-17 02:30:06
|
Update of /cvsroot/openvrml/openvrml/m4 In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv31563/m4 Modified Files: antlr.m4 Log Message: Use AC_CHECK_PROG instead of AC_PATH_PROG so that ANTLR can be set to an invocation of the java runtime including arguments. Index: antlr.m4 =================================================================== RCS file: /cvsroot/openvrml/openvrml/m4/antlr.m4,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** antlr.m4 6 May 2006 07:32:16 -0000 1.3 --- antlr.m4 17 Nov 2006 02:30:00 -0000 1.4 *************** *** 3,7 **** [AC_REQUIRE([OV_PROG_JAVA]) AC_ARG_VAR([ANTLR], [antlr parser generator]) ! AC_PATH_PROG([ANTLR], [antlr]) if test -z "$ANTLR"; then AC_MSG_CHECKING([if antlr is available to the Java runtime]) --- 3,7 ---- [AC_REQUIRE([OV_PROG_JAVA]) AC_ARG_VAR([ANTLR], [antlr parser generator]) ! AC_CHECK_PROG([ANTLR], [antlr]) if test -z "$ANTLR"; then AC_MSG_CHECKING([if antlr is available to the Java runtime]) |