Update of /cvsroot/rccparser/rccparser
In directory sc8-pr-cvs1:/tmp/cvs-serv6133
Modified Files:
ChangeLog NEWS configure.in
Log Message:
2003-04-23 Tom Howard <tom...@us...>
* ./configure.in
* ./src/Makefile.am
Fixed documentation building
* ./src/rccparse.ypp
* ./src/rccparser.h
Fixed newly introduced init parsing errors.
Index: ChangeLog
===================================================================
RCS file: /cvsroot/rccparser/rccparser/ChangeLog,v
retrieving revision 1.68
retrieving revision 1.69
diff -C2 -d -r1.68 -r1.69
*** ChangeLog 22 Apr 2003 00:46:39 -0000 1.68
--- ChangeLog 23 Apr 2003 04:08:42 -0000 1.69
***************
*** 1,2 ****
--- 1,12 ----
+ 2003-04-23 Tom Howard <tom...@us...>
+
+ * ./configure.in
+ * ./src/Makefile.am
+ Fixed documentation building
+
+ * ./src/rccparse.ypp
+ * ./src/rccparser.h
+ Fixed newly introduced init parsing errors.
+
2003-04-22 Tom Howard <tom...@us...>
Index: NEWS
===================================================================
RCS file: /cvsroot/rccparser/rccparser/NEWS,v
retrieving revision 1.22
retrieving revision 1.23
diff -C2 -d -r1.22 -r1.23
*** NEWS 22 Apr 2003 00:46:39 -0000 1.22
--- NEWS 23 Apr 2003 04:08:43 -0000 1.23
***************
*** 1,3 ****
--- 1,5 ----
[1.2.3]
+ * Fixed documentation building problems on some machines.
+
* Fixed bug in coach init messages.
***************
*** 10,27 ****
[1.2.2]
* When a version 8 player audio message is received by a player
! doBuildOppSide() and doBuildOurSide() are no longer called as they
! are redundant. doBuildPlayerAudio( int time, double dir, const
! std::string& msg ) or doBuildPlayerAudio( int time ) is called for
! opponent messages and doBuildPlayerAudio( int time, double dir, int
! unum, const std::string& msg ) or doBuildPlayerAudio( int time, int
! unum ) is called for team-mate's messages.
* The minor changes to the Version 9 protocol are now supported,
! including the new catch fault, indirect free kick and penalty
! playmodes.
* All of rcc::Parser's virtual functions have now been documented.
! If you spot any errors in the documentation please let me know or
! better yet, submit a patch.
[1.2.1]
--- 12,29 ----
[1.2.2]
* When a version 8 player audio message is received by a player
! doBuildOppSide() and doBuildOurSide() are no longer called as they
! are redundant. doBuildPlayerAudio( int time, double dir, const
! std::string& msg ) or doBuildPlayerAudio( int time ) is called for
! opponent messages and doBuildPlayerAudio( int time, double dir, int
! unum, const std::string& msg ) or doBuildPlayerAudio( int time, int
! unum ) is called for team-mate's messages.
* The minor changes to the Version 9 protocol are now supported,
! including the new catch fault, indirect free kick and penalty
! playmodes.
* All of rcc::Parser's virtual functions have now been documented.
! If you spot any errors in the documentation please let me know or
! better yet, submit a patch.
[1.2.1]
Index: configure.in
===================================================================
RCS file: /cvsroot/rccparser/rccparser/configure.in,v
retrieving revision 1.33
retrieving revision 1.34
diff -C2 -d -r1.33 -r1.34
*** configure.in 24 Mar 2003 19:30:28 -0000 1.33
--- configure.in 23 Apr 2003 04:08:43 -0000 1.34
***************
*** 26,31 ****
fi
! AC_PROG_YACC
AC_PROG_AWK
--- 26,39 ----
fi
! AC_SUBST([YACC])
! AC_SUBST([YACCFLAGS])
! AC_SUBST([AM_YACCFLAGS])
! AC_CHECK_PROGS([YACC],
! [bison byacc yacc],
! [$srcdir/missing bison])
+ if test "$YACC" = "bison"; then
+ YACC="bison -y"
+ fi
AC_PROG_AWK
***************
*** 113,118 ****
fi
! AC_PATH_PROG(DOXYGEN, doxygen, found)
! AM_CONDITIONAL(BUILD_DOC, [test "$DOXYGEN"] )
AC_ARG_VAR(DOT, [name and location of dot executable, which is
--- 121,134 ----
fi
! AC_ARG_WITH(doxygen,
! AC_HELP_STRING([--with-doxygen],
! [use doxygen to rebuild the documentation if neccesary (default=yes)]),
! use_doxygen=$withval, use_doxygen=yes)
!
! if test "$use_doxygen" = "yes"; then
! AC_PATH_PROG(DOXYGEN, doxygen, found)
! fi
!
! AM_CONDITIONAL(BUILD_DOC, [test "$DOXYGEN"])
AC_ARG_VAR(DOT, [name and location of dot executable, which is
|