Update of /cvsroot/cbar/cbar/docs
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv20175/docs
Modified Files:
cbar._tx changes._tx readme._tx
Log Message:
Fixed bug 1297989
Index: cbar._tx
===================================================================
RCS file: /cvsroot/cbar/cbar/docs/cbar._tx,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** cbar._tx 8 Nov 2004 21:20:43 -0000 1.7
--- cbar._tx 21 Sep 2005 18:29:15 -0000 1.8
***************
*** 4,8 ****
@#
@multiwordheaders
! @manh="version 1.0.2" "CBAR" "Manual"
@document_title=CBAR Manual
@rtfh=cbar - an add on lib to CGUI for bar code reading
--- 4,8 ----
@#
@multiwordheaders
! @manh="version 1.0.3" "CBAR" "Manual"
@document_title=CBAR Manual
@rtfh=cbar - an add on lib to CGUI for bar code reading
***************
*** 16,20 ****
@$This is the Info version of the CBAR manual
@$
! @$By Christer Sandberg
@$@end ifinfo
@$
--- 16,20 ----
@$This is the Info version of the CBAR manual
@$
! @$By Christer Sandberg
@$@end ifinfo
@$
***************
*** 30,34 ****
<center>Homepage: <a href="http://www.idt.mdh.se/~csg/cgui/cguix">http://www.idt.mdh.se/~csg/cgui/cguix</a></center>
<center><b>
! The Manual of CBAR 1.0.2
</b></center>
@!text
--- 30,34 ----
<center>Homepage: <a href="http://www.idt.mdh.se/~csg/cgui/cguix">http://www.idt.mdh.se/~csg/cgui/cguix</a></center>
<center><b>
! The Manual of CBAR 1.0.3
</b></center>
@!text
Index: readme._tx
===================================================================
RCS file: /cvsroot/cbar/cbar/docs/readme._tx,v
retrieving revision 1.7
retrieving revision 1.8
diff -C2 -d -r1.7 -r1.8
*** readme._tx 8 Nov 2004 21:20:44 -0000 1.7
--- readme._tx 21 Sep 2005 18:29:15 -0000 1.8
***************
*** 45,51 ****
Introduction
! CBAR is a library with functions that let you communicate with a bar
! code reader in a simple way. It relies on CGUI for dialogs and on
! CCOM for serial communication.
CBAR builds and operates on the following platforms: DOS/DJGPP, Linux,
--- 45,50 ----
Introduction
! CBAR is a library with functions that let you communicate with a bar code reader
! in a simple way. It uses CGUI for dialogs and CCOM for serial communication.
CBAR builds and operates on the following platforms: DOS/DJGPP, Linux,
***************
*** 58,62 ****
<br>Allegro version 4.0.x
<br>CGUI version 1.6.7 or later
! <br>CCOM version 0.9.2 or later
<br>There are also other requirements like correctly installed compilers etc.
but these are already fulfilled if you succeded in making and installing
--- 57,61 ----
<br>Allegro version 4.0.x
<br>CGUI version 1.6.7 or later
! <br>CCOM version 0.9.3 or later
<br>There are also other requirements like correctly installed compilers etc.
but these are already fulfilled if you succeded in making and installing
***************
*** 76,80 ****
Installation goes in some simple steps, and should be familiar since it is
! similar to the installation procedure as of Allegro and CGUI:
<ul>
<li>
--- 75,79 ----
Installation goes in some simple steps, and should be familiar since it is
! similar to the installation procedure as of CGUI:
<ul>
<li>
***************
*** 91,95 ****
fix.bat mingw32 - to compile with Windows/MinGW32
fix.bat msvc - to compile with Windows/MSVC
! ./fix.sh unix - to compile with Linux/gcc
</pre>
<li>
--- 90,94 ----
fix.bat mingw32 - to compile with Windows/MinGW32
fix.bat msvc - to compile with Windows/MSVC
! ./fix.sh unix - to compile with Linux/gcc
</pre>
<li>
***************
*** 105,109 ****
export ALLEGRO=/home/user/allegro-4.0.3
</pre>
! or whatever is the name of your allegro directory.
<li>
Specify the path to your CGUI installation by setting the environment
--- 104,113 ----
export ALLEGRO=/home/user/allegro-4.0.3
</pre>
! or whatever is the name of your allegro directory.<br>
! When CBAR is built some programs in the `tools' directory of Allegro will be
! needed, so you have to install an Allegro version built from sources (or
! alternatively obtain the required tools some other way, put them in a
! directory named `tools' and let the variable ALLEGRO point out the directory
! immediately above `tools').
<li>
Specify the path to your CGUI installation by setting the environment
***************
*** 135,144 ****
Compile the library. This is done by running "make" at the command line.
<li>
! Install the files to common directories. This is done by running
"make install" at the command line.<br>
! Under Linux, you may want to instead run "make install SYSTEM_DIR=<dir>",
! which will cause headers to be installed to <dir>/include and libraries to
! <dir>/lib. (default for <dir> is /usr/local), or else you need to
! run make install as root.
</ul>
That's it! Now you are ready to run the example program in the example directory.
--- 139,158 ----
Compile the library. This is done by running "make" at the command line.
<li>
! Install the CBAR files to common directories. This is done by running
"make install" at the command line.<br>
! Linux/Unix specifics:<br>
! You need to be root to succeed with the installation command i.e. type the
! command<br>
! <pre>
! su -c "make install"
! </pre>
! and enter the root password when prompted for.<br>
! Alternatively, if you cannot be root you may install CBAR to some other
! location by running "make install SYSTEM_DIR=<dir>", which will cause
! headers to be installed to <dir>/include and libraries to
! <dir>/lib. Default for <dir> is /usr/local.<br>
! To be able to link your program to the CBAR files installed at some other
! location than the default you need to specifiy the paths to your compiler
! and linker.
</ul>
That's it! Now you are ready to run the example program in the example directory.
***************
*** 162,166 ****
the static versions of Allegro and CGUI.
<li>
! Users of the MSys environment needs to set teh environment vaariable
UNIX_TOOLS to 1 before make install is run.
<li>
--- 176,180 ----
the static versions of Allegro and CGUI.
<li>
! Users of the MSys environment needs to set the environment vaariable
UNIX_TOOLS to 1 before make install is run.
<li>
***************
*** 169,177 ****
and add "cbar" after the existing "libc" entry (separated by a space).
<li>
! To use the
! To use the debugging library, link with libccomd.a instead of libccom.a.
</ul>
@heading
Usage
<ul><li>
--- 183,196 ----
and add "cbar" after the existing "libc" entry (separated by a space).
<li>
! To link your application with the debugging lib, link with -lcbard
! instead of -lcbar.
</ul>
@heading
+ MSys
+ Users of the MSys environment needs to set the environment variable
+ UNIX_TOOLS to 1 before make install is run.
+
+ @heading
Usage
<ul><li>
***************
*** 181,185 ****
Before calling any CBAR functions you must have initialized CBAR and CGUI,
Note also <b>CGUI</b>! For info about available functions, please read
! the manual, e.g. cbarm.html (but the docs are also available in other
formats).
<li>
--- 200,204 ----
Before calling any CBAR functions you must have initialized CBAR and CGUI,
Note also <b>CGUI</b>! For info about available functions, please read
! the manual, e.g. cbar.html (but the docs are also available in other
formats).
<li>
***************
*** 203,206 ****
--- 222,228 ----
check the box to the left of the library. You have to replace cbar with
cbard to include debugging information.
+ <li>
+ If you use some other environment, there is probably some options dialog
+ where you can enter the libraries names (e.g. -lcbar -lcgui -lalleg).
</ul>
Index: changes._tx
===================================================================
RCS file: /cvsroot/cbar/cbar/docs/changes._tx,v
retrieving revision 1.6
retrieving revision 1.7
diff -C2 -d -r1.6 -r1.7
*** changes._tx 8 Nov 2004 21:20:44 -0000 1.6
--- changes._tx 21 Sep 2005 18:29:15 -0000 1.7
***************
*** 40,43 ****
--- 40,48 ----
Changes
+ 1.0.3:
+ <ul>
+ <li>
+ Fixed bug 1297989 "Build instructions confusing"
+ </ul>
1.0.2:
<ul>
|