From 345b048def378e8651f14d0c170cab36a5eaa483 Mon Sep 17 00:00:00 2001 From: oetiker Date: Thu, 4 May 2006 13:24:16 +0000 Subject: [PATCH] fix my mail address git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@812 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/PROJECTS | 2 +- program/README | 2 +- program/acinclude.m4 | 2 +- program/configure.ac | 6 +++--- program/doc/rrdbuild.pod | 16 ++++++++-------- program/doc/rrdcgi.pod | 2 +- program/doc/rrdcreate.pod | 2 +- program/doc/rrddump.pod | 2 +- program/doc/rrdfetch.pod | 2 +- program/doc/rrdgraph-old.pod | 2 +- program/doc/rrdgraph.pod | 2 +- program/doc/rrdgraph_data.pod | 2 +- program/doc/rrdgraph_examples.pod | 2 +- program/doc/rrdgraph_graph.pod | 2 +- program/doc/rrdgraph_rpn.pod | 2 +- program/doc/rrdinfo.pod | 2 +- program/doc/rrdrestore.pod | 2 +- program/doc/rrdtool.pod | 2 +- program/doc/rrdtune.pod | 2 +- program/doc/rrdtutorial.pod | 2 +- program/doc/rrdupdate.pod | 2 +- program/doc/rrdxport.pod | 2 +- 22 files changed, 31 insertions(+), 31 deletions(-) diff --git a/program/PROJECTS b/program/PROJECTS index bccea05b..68a5fcfb 100644 --- a/program/PROJECTS +++ b/program/PROJECTS @@ -3,7 +3,7 @@ NEW RRD DATAFORMAT with Accessor Functions Interested: -Tobias Oetiker +Tobias Oetiker Jake Brutlag - updating rrd_update to use accessor fks diff --git a/program/README b/program/README index cdfbe075..1dfcace0 100644 --- a/program/README +++ b/program/README @@ -72,4 +72,4 @@ The latest Version: Is available from http://people.ee.ethz.ch/oetiker/webtools/rrdtool/ -Tobias Oetiker +Tobias Oetiker diff --git a/program/acinclude.m4 b/program/acinclude.m4 index 90889441..93673957 100644 --- a/program/acinclude.m4 +++ b/program/acinclude.m4 @@ -443,7 +443,7 @@ AC_IEEE([out of the box], works, , , , PERLFLAGS="CCFLAGS=-DMUST_DISABLE_SIGFPE"], AC_MSG_ERROR([ Your Compiler does not do propper IEEE math ... Please find out how to -make IEEE math work with your compiler and let me know (oetiker@ee.ethz.ch). +make IEEE math work with your compiler and let me know (tobi@oetiker.ch). Check config.log to see what went wrong ... ]))])])])])])])])])]) diff --git a/program/configure.ac b/program/configure.ac index fca2c34c..b64d4801 100644 --- a/program/configure.ac +++ b/program/configure.ac @@ -363,9 +363,9 @@ CONFIGURE_PART(Findr 3rd-Party Libraries) AM_CONDITIONAL(BUILD_RRDCGI,[test $enable_rrdcgi != no]) EX_CHECK_ALL(art_lgpl_2, art_vpath_add_point, libart_lgpl/libart.h, libart-2.0, 2.3.17, ftp://ftp.gnome.org/pub/GNOME/sources/libart_lgpl/2.3/, /usr/include/libart-2.0) -EX_CHECK_ALL(z, zlibVersion, zlib.h, zlib, 1.2.2, http://www.gzip.org/zlib/, "") -EX_CHECK_ALL(png, png_access_version_number, png.h, libpng, 1.2.8, http://prdownloads.sourceforge.net/libpng/, "") -EX_CHECK_ALL(freetype, FT_Init_FreeType, ft2build.h, freetype2, 2.1.9, http://prdownloads.sourceforge.net/freetype/, /usr/include/freetype2) +EX_CHECK_ALL(z, zlibVersion, zlib.h, zlib, 1.2.3, http://www.gzip.org/zlib/, "") +EX_CHECK_ALL(png, png_access_version_number, png.h, libpng, 1.2.10, http://prdownloads.sourceforge.net/libpng/, "") +EX_CHECK_ALL(freetype, FT_Init_FreeType, ft2build.h, freetype2, 2.1.10, http://prdownloads.sourceforge.net/freetype/, /usr/include/freetype2) if test "$EX_CHECK_ALL_ERR" = "YES"; then AC_MSG_ERROR([Please fix the library issues listed above and try again.]) diff --git a/program/doc/rrdbuild.pod b/program/doc/rrdbuild.pod index 245d0285..2974379d 100644 --- a/program/doc/rrdbuild.pod +++ b/program/doc/rrdbuild.pod @@ -72,8 +72,8 @@ compile your own copies of the required libraries. Here is how: =item Building zlib cd $BUILD_DIR - wget http://oss.oetiker.ch/rrdtool/pub/libs/zlib-1.2.2.tar.gz - tar zxf zlib-1.2.2.tar.gz + wget http://oss.oetiker.ch/rrdtool/pub/libs/zlib-1.2.3.tar.gz + tar zxf zlib-1.2.3.tar.gz cd zlib-1.2.2 env CFLAGS="-O3 -fPIC" ./configure --prefix=$BUILD_DIR/lb make @@ -88,8 +88,8 @@ the end of line 4 means that line 4 and line 5 are on one line. cd $BUILD_DIR wget http://oss.oetiker.ch/rrdtool/pub/libs/libpng-1.2.8-config.tar.gz - tar zxvf libpng-1.2.8-config.tar.gz - cd libpng-1.2.8-config + tar zxvf libpng-1.2.10.tar.gz + cd libpng-1.2.10 env CPPFLAGS="-I$BUILD_DIR/lb/include" LDFLAGS="-L$BUILD_DIR/lb/lib" CFLAGS="-O3 -fPIC" \ ./configure --disable-shared --prefix=$BUILD_DIR/lb make @@ -98,9 +98,9 @@ the end of line 4 means that line 4 and line 5 are on one line. =item Building freetype cd $BUILD_DIR - wget http://oss.oetiker.ch/rrdtool/pub/libs/freetype-2.1.9.tar.gz - tar zxvf freetype-2.1.9.tar.gz - cd freetype-2.1.9 + wget http://oss.oetiker.ch/rrdtool/pub/libs/freetype-2.1.10.tar.bz2 + tar jxvf freetype-2.1.10.tar.bz2 + cd freetype-2.1.10 env CPPFLAGS="-I$BUILD_DIR/lb/include" LDFLAGS="-L$BUILD_DIR/lb/lib" CFLAGS="-O3 -fPIC" \ ./configure --disable-shared --prefix=$BUILD_DIR/lb make @@ -169,5 +169,5 @@ build has been successful. =head1 AUTHOR -Tobias Oetiker Eoetiker@ee.ethz.chE +Tobias Oetiker Etobi@oetiker.chE diff --git a/program/doc/rrdcgi.pod b/program/doc/rrdcgi.pod index 92d1f909..4c81e018 100644 --- a/program/doc/rrdcgi.pod +++ b/program/doc/rrdcgi.pod @@ -217,7 +217,7 @@ webserver/browser =head1 AUTHOR -Tobias Oetiker Eoetiker@ee.ethz.chE +Tobias Oetiker Etobi@oetiker.chE diff --git a/program/doc/rrdcreate.pod b/program/doc/rrdcreate.pod index 62907c83..27ef702a 100644 --- a/program/doc/rrdcreate.pod +++ b/program/doc/rrdcreate.pod @@ -550,4 +550,4 @@ RPN expression handles the divide by zero case. =head1 AUTHOR -Tobias Oetiker Eoetiker@ee.ethz.chE +Tobias Oetiker Etobi@oetiker.chE diff --git a/program/doc/rrddump.pod b/program/doc/rrddump.pod index aa2a7e70..2e4cd4b2 100644 --- a/program/doc/rrddump.pod +++ b/program/doc/rrddump.pod @@ -58,5 +58,5 @@ B for details. =head1 AUTHOR -Tobias Oetiker Eoetiker@ee.ethz.chE +Tobias Oetiker Etobi@oetiker.chE diff --git a/program/doc/rrdfetch.pod b/program/doc/rrdfetch.pod index 7ebd9d60..3611928b 100644 --- a/program/doc/rrdfetch.pod +++ b/program/doc/rrdfetch.pod @@ -259,4 +259,4 @@ I<19970703 12:45> -- 12:45 July 3th, 1997 =head1 AUTHOR -Tobias Oetiker +Tobias Oetiker diff --git a/program/doc/rrdgraph-old.pod b/program/doc/rrdgraph-old.pod index 37acaab4..f35e0cd4 100644 --- a/program/doc/rrdgraph-old.pod +++ b/program/doc/rrdgraph-old.pod @@ -657,7 +657,7 @@ be misleading. =head1 AUTHOR -Tobias Oetiker Eoetiker@ee.ethz.chE +Tobias Oetiker Etobi@oetiker.chE =head1 REFERENCES diff --git a/program/doc/rrdgraph.pod b/program/doc/rrdgraph.pod index 63f5307f..b7bf3706 100644 --- a/program/doc/rrdgraph.pod +++ b/program/doc/rrdgraph.pod @@ -380,7 +380,7 @@ Make sure to read L for tipsEtricks. =head1 AUTHOR -Program by Tobias Oetiker Eoetiker@ee.ethz.chE +Program by Tobias Oetiker Etobi@oetiker.chE This manual page by Alex van den Bogaerdt Ealex@ergens.op.het.netE diff --git a/program/doc/rrdgraph_data.pod b/program/doc/rrdgraph_data.pod index 04d97617..64c559ab 100644 --- a/program/doc/rrdgraph_data.pod +++ b/program/doc/rrdgraph_data.pod @@ -97,6 +97,6 @@ Make sure to read L for tipsEtricks. =head1 AUTHOR -Program by Tobias Oetiker Eoetiker@ee.ethz.chE +Program by Tobias Oetiker Etobi@oetiker.chE This manual page by Alex van den Bogaerdt Ealex@ergens.op.het.netE diff --git a/program/doc/rrdgraph_examples.pod b/program/doc/rrdgraph_examples.pod index e743c9f0..fbe2f16e 100644 --- a/program/doc/rrdgraph_examples.pod +++ b/program/doc/rrdgraph_examples.pod @@ -134,6 +134,6 @@ Make sure to read L for tipsEtricks. =head1 AUTHOR -Program by Tobias Oetiker Eoetiker@ee.ethz.chE +Program by Tobias Oetiker Etobi@oetiker.chE This manual page by Alex van den Bogaerdt Ealex@ergens.op.het.netE diff --git a/program/doc/rrdgraph_graph.pod b/program/doc/rrdgraph_graph.pod index 754e703e..3c54e24f 100644 --- a/program/doc/rrdgraph_graph.pod +++ b/program/doc/rrdgraph_graph.pod @@ -308,6 +308,6 @@ Make sure to read L for tipsEtricks. =head1 AUTHOR -Program by Tobias Oetiker Eoetiker@ee.ethz.chE +Program by Tobias Oetiker Etobi@oetiker.chE This manual page by Alex van den Bogaerdt Ealex@ergens.op.het.netE diff --git a/program/doc/rrdgraph_rpn.pod b/program/doc/rrdgraph_rpn.pod index 581dce9c..5000d7a1 100644 --- a/program/doc/rrdgraph_rpn.pod +++ b/program/doc/rrdgraph_rpn.pod @@ -296,6 +296,6 @@ Make sure to read L for tipsEtricks. =head1 AUTHOR -Program by Tobias Oetiker Eoetiker@ee.ethz.chE +Program by Tobias Oetiker Etobi@oetiker.chE This manual page by Alex van den Bogaerdt Ealex@ergens.op.het.netE diff --git a/program/doc/rrdinfo.pod b/program/doc/rrdinfo.pod index 24676eff..e83d8d61 100644 --- a/program/doc/rrdinfo.pod +++ b/program/doc/rrdinfo.pod @@ -58,5 +58,5 @@ The name of the B you want to examine. =head1 AUTHOR -Tobias Oetiker Eoetiker@ee.ethz.chE +Tobias Oetiker Etobi@oetiker.chE diff --git a/program/doc/rrdrestore.pod b/program/doc/rrdrestore.pod index 811548da..e098e0df 100644 --- a/program/doc/rrdrestore.pod +++ b/program/doc/rrdrestore.pod @@ -35,4 +35,4 @@ Allows B to overwrite the destination B. =head1 AUTHOR -Tobias Oetiker +Tobias Oetiker diff --git a/program/doc/rrdtool.pod b/program/doc/rrdtool.pod index 0b7add0c..0f41607a 100644 --- a/program/doc/rrdtool.pod +++ b/program/doc/rrdtool.pod @@ -308,5 +308,5 @@ Bugs? Features! =head1 AUTHOR -Tobias Oetiker +Tobias Oetiker diff --git a/program/doc/rrdtune.pod b/program/doc/rrdtune.pod index ab195bd9..5e9029bf 100644 --- a/program/doc/rrdtune.pod +++ b/program/doc/rrdtune.pod @@ -166,5 +166,5 @@ window of 5 time points. =head1 AUTHOR -Tobias Oetiker +Tobias Oetiker diff --git a/program/doc/rrdtutorial.pod b/program/doc/rrdtutorial.pod index bcad01c8..05c1288f 100644 --- a/program/doc/rrdtutorial.pod +++ b/program/doc/rrdtutorial.pod @@ -4,7 +4,7 @@ rrdtutorial - Alex van den Bogaerdt's RRDtool tutorial =head1 DESCRIPTION -RRDtool is written by Tobias Oetiker with +RRDtool is written by Tobias Oetiker with contributions from many people all around the world. This document is written by Alex van den Bogaerdt to help you understand what RRDtool is and what it can do for you. diff --git a/program/doc/rrdupdate.pod b/program/doc/rrdupdate.pod index d362f14e..cc0b452f 100644 --- a/program/doc/rrdupdate.pod +++ b/program/doc/rrdupdate.pod @@ -97,5 +97,5 @@ regular readings. The update interval seems to be around 300 seconds. =head1 AUTHOR -Tobias Oetiker +Tobias Oetiker diff --git a/program/doc/rrdxport.pod b/program/doc/rrdxport.pod index ebfc4798..62a96259 100644 --- a/program/doc/rrdxport.pod +++ b/program/doc/rrdxport.pod @@ -134,5 +134,5 @@ The resulting data section is: =head1 AUTHOR -Tobias Oetiker Eoetiker@ee.ethz.chE +Tobias Oetiker Etobi@oetiker.chE -- 2.30.2