From: Braden M. <br...@us...> - 2006-08-11 23:50:45
|
Update of /cvsroot/openvrml/openvrml In directory sc8-pr-cvs3.sourceforge.net:/tmp/cvs-serv24121 Modified Files: ChangeLog configure.ac Log Message: Fixed test for antlr such that configure does not fail if antlr isn't found at all. Index: configure.ac =================================================================== RCS file: /cvsroot/openvrml/openvrml/configure.ac,v retrieving revision 1.90 retrieving revision 1.91 diff -C2 -d -r1.90 -r1.91 *** configure.ac 10 Aug 2006 07:11:26 -0000 1.90 --- configure.ac 11 Aug 2006 23:50:42 -0000 1.91 *************** *** 50,54 **** OV_PROG_ANTLR([2.7.4]) AS_IF([test -z "$ANTLR"], ! [AS_IF([test ! -f $top_srcdir/src/libopenvrml/Vrml97Parser.cpp], [AC_MSG_FAILURE([antlr 2.7.4 not found])], [AC_MSG_WARN([antlr 2.7.4 not found; but generated files already exist])])]) --- 50,54 ---- OV_PROG_ANTLR([2.7.4]) AS_IF([test -z "$ANTLR"], ! [AS_IF([test ! -f $srcdir/src/libopenvrml/openvrml/Vrml97Parser.cpp], [AC_MSG_FAILURE([antlr 2.7.4 not found])], [AC_MSG_WARN([antlr 2.7.4 not found; but generated files already exist])])]) Index: ChangeLog =================================================================== RCS file: /cvsroot/openvrml/openvrml/ChangeLog,v retrieving revision 1.1307 retrieving revision 1.1308 diff -C2 -d -r1.1307 -r1.1308 *** ChangeLog 10 Aug 2006 23:10:55 -0000 1.1307 --- ChangeLog 11 Aug 2006 23:50:42 -0000 1.1308 *************** *** 1,2 **** --- 1,7 ---- + 2006-08-11 Braden McDaniel <br...@en...> + + * configure.ac: Fixed test for antlr such that configure does not + fail if antlr isn't found at all. + 2006-08-10 Braden McDaniel <br...@en...> |