From: Tom H. <tom...@us...> - 2003-01-06 17:18:18
|
Update of /cvsroot/rccparser/rccparser In directory sc8-pr-cvs1:/tmp/cvs-serv24436 Modified Files: AUTHORS ChangeLog README Log Message: 2003-01-06 Tom Howard <tom...@us...> * ./AUTHORS Updated my email address * ./README Updated url Index: AUTHORS =================================================================== RCS file: /cvsroot/rccparser/rccparser/AUTHORS,v retrieving revision 1.1.1.1 retrieving revision 1.2 diff -C2 -d -r1.1.1.1 -r1.2 *** AUTHORS 8 Jun 2001 08:37:57 -0000 1.1.1.1 --- AUTHORS 6 Jan 2003 17:18:04 -0000 1.2 *************** *** 1 **** ! Tom Howard <tho...@em...> --- 1 ---- ! Tom Howard <tom...@us...> Index: ChangeLog =================================================================== RCS file: /cvsroot/rccparser/rccparser/ChangeLog,v retrieving revision 1.50 retrieving revision 1.51 diff -C2 -d -r1.50 -r1.51 *** ChangeLog 6 Jan 2003 16:28:58 -0000 1.50 --- ChangeLog 6 Jan 2003 17:18:07 -0000 1.51 *************** *** 1,4 **** --- 1,12 ---- 2003-01-06 Tom Howard <tom...@us...> + * ./AUTHORS + Updated my email address + + * ./README + Updated url + + 2003-01-06 Tom Howard <tom...@us...> + * ./configure.in Released rccparser-1.2.0 Index: README =================================================================== RCS file: /cvsroot/rccparser/rccparser/README,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** README 17 Dec 2002 17:08:36 -0000 1.11 --- README 6 Jan 2003 17:18:09 -0000 1.12 *************** *** 2,6 **** RCCParser is a parsing library for clients for the RoboCup Soccer ! Simulator (www.sserver.sf.net). Currently the library supports version 7 and 8 field players (including goalies), and coaches (both online and offline). --- 2,6 ---- RCCParser is a parsing library for clients for the RoboCup Soccer ! Simulator (http://sserver.sf.net). Currently the library supports version 7 and 8 field players (including goalies), and coaches (both online and offline). *************** *** 17,23 **** components in the following locations: ! /usr/local/bin for the rccptest executable /usr/local/lib/rccparser for the RCCParser library /usr/local/include/rccparser for the RCCParser headers /usr/local/share/rccparser for the sample test data You may need administrator privilages to install RCCParser into the --- 17,24 ---- components in the following locations: ! /usr/local/bin for the rccptest executable, /usr/local/lib for the RCCParser library /usr/local/include/rccparser for the RCCParser headers /usr/local/share/rccparser for the sample test data + and the ac_lib_rccparser.m4 file. You may need administrator privilages to install RCCParser into the *************** *** 45,55 **** To link against the shared library you must either use GNU Libtool, and specify the full pathname of the RCCParser shared library, or use ! `-L/usr/local/lib/rccparser/' during linking and do at least one of ! the following: - add `/usr/local/lib/rccparser/' to the `LD_LIBRARY_PATH' environment variable during execution - add ! `/usr/local/lib/rccparser/' to the `LD_RUN_PATH' environment variable ! during linking - use the `-Wl,--rpath -Wl,/usr/local/lib/rccparser/' linker flag - have your system administrator add ! `/usr/local/lib/rccparser/' to `/etc/ld.so.conf' or modify as necessary if you installed rccparser into non-default --- 46,56 ---- To link against the shared library you must either use GNU Libtool, and specify the full pathname of the RCCParser shared library, or use ! `-L/usr/local/lib/' during linking and do at least one of ! the following: - add `/usr/local/lib/' to the `LD_LIBRARY_PATH' environment variable during execution - add ! `/usr/local/lib/' to the `LD_RUN_PATH' environment variable ! during linking - use the `-Wl,--rpath -Wl,/usr/local/lib/' linker flag - have your system administrator add ! `/usr/local/lib/' to `/etc/ld.so.conf' or modify as necessary if you installed rccparser into non-default *************** *** 63,70 **** Your code can be compiled with the static RCCParser library by adding ! `-I/usr/local/include/rccparser ! /usr/local/lib/rccparser/librccparser.a' or modify as necessary if you ! installed rccparser into non-default directories. ! `--enable-rccptest=yes' will enable the building and installation of --- 64,69 ---- Your code can be compiled with the static RCCParser library by adding ! `-I/usr/local/include/ -L/usr/local/lib/ -lrccparser' or modify as ! necessary if you installed rccparser into non-default directories. `--enable-rccptest=yes' will enable the building and installation of |