X-Git-Url: http://git.silcnet.org/gitweb/?a=blobdiff_plain;f=public_html%2Fhtml%2Fcvs.php;h=80a7eb6020d2b3c956b0c59a354b8a3c8860261d;hb=e7b6c157b80152bf9fb9266e6bdd93f9fb0db776;hp=d56955a195fa5f6bdb1814c25aa7cbf5d4223645;hpb=2dc218143c7859f7529396dc121ae08e2fd78da0;p=silc.git diff --git a/public_html/html/cvs.php b/public_html/html/cvs.php index d56955a1..80a7eb60 100644 --- a/public_html/html/cvs.php +++ b/public_html/html/cvs.php @@ -35,7 +35,7 @@ The repository can be checked out by using anonymous pserver with CVS.
 
For those who are using sh/ksh/bash/zsh the check out is done as follows:
 
- + export CVSROOT=:pserver:
 
cvs login
@@ -46,7 +46,7 @@ cvs logout

 
For those who are using csh/tcsh the check out is done as follows:
 
- + setenv CVSROOT :pserver:
 
cvs login
@@ -57,7 +57,7 @@ cvs logout
If you don't want to set $CVSROOT environment variable you can set the path to the cvs as command line option:
 
- + cvs -d:pserver: login
cvs -d:pserver: co silc @@ -89,7 +89,7 @@ distribution.
 
Following directories currently exist in SILC source tree.
 
- + doc/
 
  Includes all the SILC documentation. Few parts of the documentation
@@ -128,7 +128,7 @@ silcd/ After checkout from CVS the SILC source tree needs to be prepared for configuration and compilation. To compile the source tree, type:
 
- + ./prepare
./configure --enable-debug
make
 
@@ -150,11 +150,20 @@ scripts. Warning is due here: The debugging produced by both cilent and server is very huge, thus it is common to test the programs as follows:
 
- -./silc -d -f configfile 2>log
-./silcd -d -f configfile 2>log + +./silc -d "*" -f configfile 2>log
+./silcd -d "*" -f configfile 2>log
+
 
+The -d option enables the debug printing. The argument for the -d option +is a string that is used to match the output debug. The example "*" will +match for everything, and all debugs will be printed. If you want to +limit the debugs you want to printout you can give for example a string +like "*server*,*rng*" to match all functions, and filenames that has +"server" or "rng" string in them. Others will not be printed out. You +can freely define regural expressions as debug string. +
 
How to clean SILC Source Tree @@ -162,7 +171,7 @@ follows: To entirely clear the source tree to the state after it was checked out from CVS, type:
 
- + ./prepare-clean