From: Tom H. <tom...@us...> - 2003-03-24 18:15:54
|
Update of /cvsroot/rccparser/rccparser In directory sc8-pr-cvs1:/tmp/cvs-serv1335 Modified Files: NEWS bootstrap configure.in Log Message: 2003-03-21 Tom Howard <tom...@us...> * ./src/Makefile.am * ./src/RC.epdf * ./src/RC.eps * ./src/RC.tif * ./src/RC.xcf * ./src/doxygen.sty * ./src/header.tex.tmpl Spruced up pdf and ps docs. Index: NEWS =================================================================== RCS file: /cvsroot/rccparser/rccparser/NEWS,v retrieving revision 1.18 retrieving revision 1.19 diff -C2 -d -r1.18 -r1.19 *** NEWS 19 Mar 2003 18:40:30 -0000 1.18 --- NEWS 24 Mar 2003 18:15:17 -0000 1.19 *************** *** 11,15 **** playmodes has been added. ! * More documentation has been added. [1.2.1] --- 11,15 ---- playmodes has been added. ! * All of rcc::Parser's virtual functions have now been documented. [1.2.1] Index: bootstrap =================================================================== RCS file: /cvsroot/rccparser/rccparser/bootstrap,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** bootstrap 26 Jul 2002 08:12:37 -0000 1.1 --- bootstrap 24 Mar 2003 18:15:17 -0000 1.2 *************** *** 1,6 **** #!/bin/sh set -x ! aclocal -I $LIBTOOL_ACLOCALDIR libtoolize --force --copy autoheader automake --add-missing --copy --- 1,7 ---- #!/bin/sh set -x ! aclocal libtoolize --force --copy + aclocal autoheader automake --add-missing --copy Index: configure.in =================================================================== RCS file: /cvsroot/rccparser/rccparser/configure.in,v retrieving revision 1.31 retrieving revision 1.32 diff -C2 -d -r1.31 -r1.32 *** configure.in 3 Feb 2003 13:47:42 -0000 1.31 --- configure.in 24 Mar 2003 18:15:18 -0000 1.32 *************** *** 18,21 **** --- 18,29 ---- + AC_ARG_WITH(sstream, + AC_HELP_STRING([--with-sstream], + [use sstream instead of strstream (default=yes)]), + use_sstream=$withval, use_sstream=yes) + if test "$use_sstream" = "yes"; then + AC_CXX_HAVE_SSTREAM + fi + AC_PROG_YACC *************** *** 71,111 **** if test $RCCPTEST=rccptest; then AC_CHECK_HEADERS([rcssserver/clangparser.h], [ ! AC_CHECK_LIB(rcssclangparser, parse, [], [ ! echo "" ! echo "************** WARNING ****************" ! echo "Could not find the rcssclangparser library or it is out of date." ! echo "If you wish to link rccptest with the rcssclangparser library," ! echo "please (re)install rcssserver or specify the path to the" ! echo "rcssclangparser library by adding" ! echo "" ! echo -e "\tCXXFLAGS=\"-L<LIBDIR> <YOUR_OTHER_FLAGS>\"" ! echo "" ! echo "to configure's command line arguments." ! echo "" ! echo "By not linking rccptest against the rcssclangparser library," ! echo "rccptest will use a dumby parser that will pretend that all CLang" ! echo "messages are parsed correctly, so long as the rccparser library" ! echo "recognises it as a CLang message" ! echo "************** WARNING ****************" ! echo "" ! ])], [ ! echo "" ! echo "************** WARNING ****************" ! echo "Could not find the headers for the rcssclangparser library or it is" ! echo "out of date. If you wish to link rccptest with the rcssclangparser" ! echo " library, please (re)install rcssserver or specify the path to the" ! echo "rcssclangparser library headers by adding" ! echo "" ! echo -e "\tCXXFLAGS=\"-I<INCLUDEDIR> <YOUR_OTHER_FLAGS>\"" ! echo "" ! echo "to configure's command line arguments." ! echo "" ! echo "By not linking rccptest against the rcssclangparser library," ! echo "rccptest will use a dumby parser that will pretend that all CLang" ! echo "messages are parsed correctly, so long as the rccparser library" ! echo "recognises it as a CLang message" ! echo "************** WARNING ****************" ! echo "" ! ]) fi --- 79,114 ---- if test $RCCPTEST=rccptest; then AC_CHECK_HEADERS([rcssserver/clangparser.h], [ ! AC_CHECK_LIB(rcssclangparser, parse, [], [AC_MSG_WARN([ ! ! Could not find the rcssclangparser library or it is out of date. ! If you wish to link rccptest with the rcssclangparser library, ! please (re)install rcssserver or specify the path to the ! rcssclangparser library by adding ! ! CXXFLAGS=\"-L<LIBDIR> <YOUR_OTHER_FLAGS>\" ! ! to configure's command line arguments. ! ! By not linking rccptest against the rcssclangparser library, ! rccptest will use a dumby parser that will pretend that all CLang ! messages are parsed correctly, so long as the rccparser library ! recognises it as a CLang message. ! ])] ! )], [AC_MSG_WARN([ ! ! Could not find the headers for the rcssclangparser library or it is ! out of date. If you wish to link rccptest with the rcssclangparser ! library, please (re)install rcssserver or specify the path to the ! rcssclangparser library headers by adding ! ! CXXFLAGS=\"-I<INCLUDEDIR> <YOUR_OTHER_FLAGS>\" ! ! to configure's command line arguments. ! ! By not linking rccptest against the rcssclangparser library, ! rccptest will use a dumby parser that will pretend that all CLang ! messages are parsed correctly, so long as the rccparser library ! recognises it as a CLang message. ! ])]) fi *************** *** 113,118 **** AM_CONDITIONAL(BUILD_DOC, [test "$DOXYGEN"] ) ! AC_ARG_VAR(HAVE_DOT, [If the program dot is available]) ! AC_PATH_PROG(HAVE_DOT, dot, YES, NO) dnl test for debug mode --- 116,123 ---- AM_CONDITIONAL(BUILD_DOC, [test "$DOXYGEN"] ) ! AC_ARG_VAR(DOT, [name and location of dot executable, which is ! used for creating diagrams in the documentation. If it is not ! set, it configure looks for dot in your PATH.]) ! AC_PATH_PROG(DOT, dot) dnl test for debug mode |