Code

Imported upstream version 1.4.2.
[pkg-rrdtool.git] / doc / rrdbuild.html
index cfd5565e8bbdbbb7ecfe0638893a41f139886a2d..e5e5a87d094e5d542d3e666aad650c2cff799ef9 100644 (file)
@@ -67,7 +67,7 @@
 </p>
 <hr />
 <h1><a name="overview">OVERVIEW</a></h1>
-<p>If you downloaded the source of rrdtool you have to compile it. This
+<p>If you downloaded the source of RRDtool you have to compile it. This
 document will give some information on how this is done.</p>
 <p>RRDtool relies on services of third part libraries. Some of these libraries
 may already be installed on your system. You have to compile copies of the other
@@ -96,7 +96,7 @@ tar</strong> and <strong>GNU make</strong> respectively. It could be that they a
 <p>Once you have decided. Save the two locations into environment variables.</p>
 <pre>
  BUILD_DIR=/tmp/rrdbuild
- INSTALL_DIR=/usr/local/rrdtool-1.3.2</pre>
+ INSTALL_DIR=/opt/rrdtool-1.4.2</pre>
 <p>If your <em class="file">/tmp</em> is mounted with the option noexec (RHEL seems todo that) you have to choose
 a different directory!</p>
 <p>Now make sure the BUILD_DIR exists and go there:</p>
@@ -106,9 +106,9 @@ a different directory!</p>
 <p>Lets first assume you already have all the necessary libraries
 pre-installed.</p>
 <pre>
- wget <a href="http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.3.2.tar.gz">http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.3.2.tar.gz</a>
- gunzip -c rrdtool-1.3.2.tar.gz | tar xf -
- cd rrdtool-1.3.2
+ wget <a href="http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.2.tar.gz">http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.2.tar.gz</a>
+ gunzip -c rrdtool-1.4.2.tar.gz | tar xf -
+ cd rrdtool-1.4.2
  ./configure --prefix=$INSTALL_DIR &amp;&amp; make &amp;&amp; make install</pre>
 <p>Ok, this was very optimistic. This try will probably have ended with
 <strong>configure</strong> complaining about several missing libraries.</p>
@@ -119,8 +119,8 @@ pre-installed.</p>
 <p>If your OS lets you install additional packages from a software repository,
 you may get away with installing the missing packages. When the packages are
 installed, run configure again and try to compile again. Below you find some
-hints on getting your OS ready for the rrdtool compilation.</p>
-<p>Additions to this list are welcome. In general rrdtool should work with the
+hints on getting your OS ready for compiling RRDtool.</p>
+<p>Additions to this list are welcome. In general RRDtool should work with the
 latest versions of the libraries. The versions listed here are just what was
 current when I tested this.</p>
 <p>
@@ -136,7 +136,7 @@ bad since OpenSolaris does not include an <em class="file">xrender.pc</em> file.
 fix this:</p>
 <pre>
  perl -i~ -p -e 's/(Requires.*?)\s*xrender.*/$1/' /usr/lib/pkgconfig/cairo.pc</pre>
-<p>Make sure rrdtool finds your new compiler</p>
+<p>Make sure the RRDtool build system finds your new compiler</p>
 <pre>
  export PATH=/opt/SunStudioExpress/bin</pre>
 <p>Since there does not seem to be a viable msgfmt tool on OpenSolaris (short
@@ -154,10 +154,10 @@ of packages will get added through dependencies.</p>
 <p>
 </p>
 <h2><a name="gentoo">Gentoo</a></h2>
-<p>In Gentoo installing rrdtool is really simple you just need to <strong>emerge
+<p>In Gentoo installing RRDtool is really simple you just need to <strong>emerge
 rrdtool</strong>. All dependencies will be handled automatically by the portage
 system. The only thing you should care about are USE flags, which allow you
-fine tune features rrdtool will be built with. Currently the following USE
+fine tune features RRDtool will be built with. Currently the following USE
 flags are available:</p>
 <pre>
  doc    - install .html and .txt documentation
@@ -188,9 +188,9 @@ expectations, so you may want to compile their latest versions.</p>
 <h2><a name="general_build_tips_for_aix">General build tips for AIX</a></h2>
 <p>If you are working with AIX, you may find the <strong>--disable-shared</strong> option
 will cause things to break for you. In that case you may have to install the
-shared libraries into the rrdtool PREFIX and work with <strong>--disable-static</strong>
+shared libraries into the RRDtool PREFIX and work with <strong>--disable-static</strong>
 instead.</p>
-<p>Another hint to get rrdtool working on AIX is to use the IBM XL C Compiler:</p>
+<p>Another hint to get RRDtool working on AIX is to use the IBM XL C Compiler:</p>
 <pre>
  export CC=/usr/vac/bin/cc
  export PERLCC=$CC</pre>
@@ -388,10 +388,10 @@ files. This is done via environment variables. Depending on the shell you
 are running, the syntax for setting environment variables is different.</p>
 <p>And finally try building again. We disable the python and tcl bindings
 because it seems that a fair number of people have ill configured python and
-tcl setups that would prevent rrdtool from building if they are included in
+tcl setups that would prevent RRDtool from building if they are included in
 their current state.</p>
 <pre>
- cd $BUILD_DIR/rrdtool-1.3.2
+ cd $BUILD_DIR/rrdtool-1.4.2
  ./configure --prefix=$INSTALL_DIR --disable-tcl --disable-python
  $MAKE clean
  $MAKE