SIM - CVS Information
Browse CVS
CVS is a way of storing and tracking changes in the code between releases.
It always has the latest code and bug fixes, which is why you should all be using CVS
.
Here's step-by-step instructions for how to check out and build SIM from CVS.
Step 1. Check out the source
Run the following commands in a directory that you have write access to:
cvs -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/sim-icq login
(Just hit enter for the password)
cvs -z3 -d :pserver:anonymous@cvs.sourceforge.net:/cvsroot/sim-icq checkout sim
You should see it listing all the source files.
You can also download the nightly tarball (bzip2 - compressed, updated every day at 3:30 MESZ): daily snapshot
Step 2. Build SIM
Require automake-1.5 and autoconf-2.52
Once you've checked SIM out of CVS, run the follwing commands:
cd sim
gmake -f admin/Makefile.common
Run:
./configure
gmake
gmake install
Step 3. Update SIM
hen there are changes to SIM's code, you'll want to update your local copy.
You don't have to remove the entire directory that you checked out and redo the whole thing;
instead, from inside the directory, run:
cvs update -d
gmake
gmake install
The update will merge all the changes into the current files,
and then gmake will rebuild SIM.
If on this step you have a error (usually arises if it is used automake-1.6) repeat actions as after checkout.
Links: |
|