From: Braden M. <br...@us...> - 2006-05-06 07:32:19
|
Update of /cvsroot/openvrml/openvrml/m4 In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv8394/m4 Modified Files: antlr.m4 Log Message: Fixes for antlr configure check. Index: antlr.m4 =================================================================== RCS file: /cvsroot/openvrml/openvrml/m4/antlr.m4,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** antlr.m4 27 Apr 2006 04:51:24 -0000 1.2 --- antlr.m4 6 May 2006 07:32:16 -0000 1.3 *************** *** 10,14 **** rule:; EOF ! AS_IF([$JAVA $JAVAFLAGS antlr.Tool conftest.g], [ANTLR="$JAVA $JAVAFLAGS antlr.Tool" AC_MSG_RESULT([yes])], --- 10,14 ---- rule:; EOF ! AS_IF([test -n "$JAVA" && $JAVA $JAVAFLAGS antlr.Tool conftest.g > /dev/null 2> /dev/null], [ANTLR="$JAVA $JAVAFLAGS antlr.Tool" AC_MSG_RESULT([yes])], *************** *** 26,28 **** --- 26,29 ---- fi fi + AC_SUBST([ANTLR]) ]) |