From: Tom H. <tom...@us...> - 2003-01-06 15:42:04
|
Update of /cvsroot/rccparser/rccparser In directory sc8-pr-cvs1:/tmp/cvs-serv15473 Modified Files: ChangeLog NEWS configure.in Log Message: 2003-01-06 Tom Howard <tom...@us...> * ./src/Makefile.am Fixed bug in test_script * ./src/rcclexer.h * ./src/rcclexer.lpp * ./src/rccparse.ypp Added support for embedded nulls in messages from server * ./src/ac_lib_rccparser.m4 Added autoconf marco for use in client programs to detect rccparser Index: ChangeLog =================================================================== RCS file: /cvsroot/rccparser/rccparser/ChangeLog,v retrieving revision 1.47 retrieving revision 1.48 diff -C2 -d -r1.47 -r1.48 *** ChangeLog 17 Dec 2002 18:33:26 -0000 1.47 --- ChangeLog 6 Jan 2003 15:41:29 -0000 1.48 *************** *** 1,2 **** --- 1,15 ---- + 2003-01-06 Tom Howard <tom...@us...> + + * ./src/Makefile.am + Fixed bug in test_script + + * ./src/rcclexer.h + * ./src/rcclexer.lpp + * ./src/rccparse.ypp + Added support for embedded nulls in messages from server + + * ./src/ac_lib_rccparser.m4 + Added autoconf marco for use in client programs to detect rccparser + 2002-12-17 Tom Howard <tom...@us...> Index: NEWS =================================================================== RCS file: /cvsroot/rccparser/rccparser/NEWS,v retrieving revision 1.13 retrieving revision 1.14 diff -C2 -d -r1.13 -r1.14 *** NEWS 17 Dec 2002 17:52:53 -0000 1.13 --- NEWS 6 Jan 2003 15:41:30 -0000 1.14 *************** *** 1,3 **** --- 1,15 ---- [1.2.0] + * Added an autoconf macro (AC_LIB_RCCPARSER) for use in client + programs to detect rccparser. Simple copy or add + ac_lib_rccparser.m4 to you acinclude.m4 and add + + AC_LIB_RCCPARSE([ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) + + to your configure.in or configure.ac + + * RCCParser now handles the embedded nulls in the messages from the + server. This means you can use a rcss::IUDPSocketStream (or + similar) directly with the parser. + * The parser now compiles with VC++ 6.0. The distribution contains the workspace files and project files. If you wish to edit the .ypp Index: configure.in =================================================================== RCS file: /cvsroot/rccparser/rccparser/configure.in,v retrieving revision 1.27 retrieving revision 1.28 diff -C2 -d -r1.27 -r1.28 *** configure.in 17 Dec 2002 17:52:53 -0000 1.27 --- configure.in 6 Jan 2003 15:41:30 -0000 1.28 *************** *** 24,28 **** - AM_DISABLE_SHARED AM_PROG_LIBTOOL AC_SUBST(LIBTOOL_DEPS) --- 24,27 ---- *************** *** 80,84 **** echo "rcssclangparser library by adding" echo "" ! echo "\tCXXFLAGS=\"-L<LIBDIR> <YOUR_OTHER_FLAGS>\"" echo "" echo "to configure's command line arguments." --- 79,83 ---- echo "rcssclangparser library by adding" echo "" ! echo -e "\tCXXFLAGS=\"-L<LIBDIR> <YOUR_OTHER_FLAGS>\"" echo "" echo "to configure's command line arguments." *************** *** 98,102 **** echo "rcssclangparser library headers by adding" echo "" ! echo "\tCXXFLAGS=\"-I<INCLUDEDIR> <YOUR_OTHER_FLAGS>\"" echo "" echo "to configure's command line arguments." --- 97,101 ---- echo "rcssclangparser library headers by adding" echo "" ! echo -e "\tCXXFLAGS=\"-I<INCLUDEDIR> <YOUR_OTHER_FLAGS>\"" echo "" echo "to configure's command line arguments." |