Code

src/rrd_client.c: Fix a potential segmentation fault in "get_path".
[rrdtool-all.git] / website / download.wml
index de0d5ab382c56ce81ee918ade5feb78b81adcf6e..61c28c83089f90b6e7878a9fdcee180be64b568f 100644 (file)
@@ -46,34 +46,36 @@ You can download RRD tool from several places:
 
 <p>RRDtool source is stored in a subversion repository with anonymous access.</p>
 
-<p>Browse the RRDtool SVN via <a href="http://oss.oetiker.ch/rrdtool-trac/browser/branches/1.2/program">RRDtrac</a>.
+<p>Browse the RRDtool SVN via <a href="http://oss.oetiker.ch/rrdtool-trac/browser/trunk/program">RRDtrac</a>.
 Or if you want todo more than look ...</p>
 
 <pre>
-svn ls -R svn://svn.oetiker.ch/rrdtool/
+svn ls svn://svn.oetiker.ch/rrdtool/
 </pre>
 
-<p>tells you what is in the repository. Normally, development will happen in
-the "trunk" directory. Every major release gets an entry in the "branches"
-tree, and every released version get added to the "tags" tree.</p>
-
-<p>If you checkout code from the subversion repository, you will find that
-the <b>configure</b> script is missing. You get this generated by running:
-<B>./MakeMakefile</B> ... note that you will need automake, autoconf and
-libtool installed for this to work.</p>
+<p>tells you what is in the repository. Development will happen in the
+"trunk" directory. Every major release gets an entry in the "branches" tree
+as soon as development in trunk starts up again ... normally after a bit of
+a settling periode, and every released version get added to the "tags"
+tree.</p>
 
+<p>To get the latest changes from the current trunk use this:</p>
+<pre>
+svn checkout svn://svn.oetiker.ch/rrdtool/trunk/program
+mv program rrdtool-trunk
+cd rrdtool-trunk
+./autogen.sh
+</pre>
 
-<p>If you fix a bug, I would love to see the output of '<b>svn diff</b>'.</p>
+<p>If you checkout code from the subversion repository, you will find that
+the <b>configure</b> script is missing. The last line in the example above
+should have taken care of this problem. If not, it could be that you are
+missing automake, autoconf and libtool installations on your system.</p>
 
-<p>Starting with rrdtool 1.3rc1, make sure to run <code>./configure --enable-maintainer-mode</code> prior
+<p>Make sure to run <code>./configure --enable-maintainer-mode</code> prior
 before 'makeing' modified source, to ensure that all bits get properly
 rebuilt.</p>
 
-<p>To get the latest changes from the current 1.2 branch use this:</p>
-<pre>
-svn checkout svn://svn.oetiker.ch/rrdtool/branches/1.2/program
-mv program rrdtool-1.2
-cd rrdtool-1.2
-./MakeMakefile
-</pre>
+<p>If you fix a bug, I would love to see the output of '<b>svn diff</b>'.</p>
+