From ac543f86b4db6458667524d3a4e8d3be292f605d Mon Sep 17 00:00:00 2001 From: oetiker Date: Sun, 25 May 2008 20:02:23 +0000 Subject: [PATCH] prepare for the release of rrdtool-1.3rc5 git-svn-id: svn://svn.oetiker.ch/rrdtool/trunk@1375 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/bindings/perl-piped/RRDp.pm | 2 +- program/bindings/perl-shared/RRDs.pm | 2 +- program/configure.ac | 6 +++--- program/doc/rrdbuild.pod | 10 +++++----- program/rrdtool.spec | 2 +- program/src/pngsize.c | 2 +- program/src/rrd.h | 2 +- program/src/rrd_cgi.c | 2 +- program/src/rrd_create.c | 2 +- program/src/rrd_datalang.c | 2 +- program/src/rrd_diff.c | 2 +- program/src/rrd_dump.c | 2 +- program/src/rrd_error.c | 2 +- program/src/rrd_fetch.c | 2 +- program/src/rrd_first.c | 2 +- program/src/rrd_format.c | 2 +- program/src/rrd_format.h | 2 +- program/src/rrd_gfx.c | 2 +- program/src/rrd_graph.c | 2 +- program/src/rrd_graph_helper.c | 2 +- program/src/rrd_hw.c | 2 +- program/src/rrd_hw.h | 2 +- program/src/rrd_i18n.h | 2 +- program/src/rrd_info.c | 2 +- program/src/rrd_is_thread_safe.h | 2 +- program/src/rrd_last.c | 2 +- program/src/rrd_lastupdate.c | 2 +- program/src/rrd_not_thread_safe.c | 2 +- program/src/rrd_open.c | 2 +- program/src/rrd_resize.c | 2 +- program/src/rrd_restore.c | 2 +- program/src/rrd_rpncalc.c | 2 +- program/src/rrd_rpncalc.h | 2 +- program/src/rrd_thread_safe.c | 2 +- program/src/rrd_thread_safe_nt.c | 2 +- program/src/rrd_tool.c | 2 +- program/src/rrd_tool.h | 2 +- program/src/rrd_tune.c | 2 +- program/src/rrd_update.c | 2 +- program/src/rrd_version.c | 2 +- program/src/rrd_xport.c | 2 +- program/src/rrd_xport.h | 2 +- program/src/rrdupdate.c | 2 +- 43 files changed, 49 insertions(+), 49 deletions(-) diff --git a/program/bindings/perl-piped/RRDp.pm b/program/bindings/perl-piped/RRDp.pm index e37104bd..510c480b 100644 --- a/program/bindings/perl-piped/RRDp.pm +++ b/program/bindings/perl-piped/RRDp.pm @@ -120,7 +120,7 @@ sub cmd (@); sub end (); sub read (); -$VERSION=1.299908051800; +$VERSION=1.299908052500; sub start ($){ croak "rrdtool is already running" diff --git a/program/bindings/perl-shared/RRDs.pm b/program/bindings/perl-shared/RRDs.pm index b75c9f0a..4eec589d 100644 --- a/program/bindings/perl-shared/RRDs.pm +++ b/program/bindings/perl-shared/RRDs.pm @@ -7,7 +7,7 @@ use vars qw(@ISA $VERSION); require DynaLoader; -$VERSION=1.299908051800; +$VERSION=1.299908052500; bootstrap RRDs $VERSION; diff --git a/program/configure.ac b/program/configure.ac index 5a73316f..44ae02dc 100644 --- a/program/configure.ac +++ b/program/configure.ac @@ -9,14 +9,14 @@ dnl tell automake the this script is for rrdtool dnl the official version number is dnl a.b.c -AC_INIT([rrdtool],[1.3rc4]) +AC_INIT([rrdtool],[1.3rc5]) dnl for testing a numberical version number comes handy dnl the released version are dnl a.bccc dnl the devel versions will be something like dnl a.b999yymmddhh -NUMVERS=1.299908051800 +NUMVERS=1.299908052500 AC_SUBST(NUMVERS) dnl for the linker to understand which version the library is compatible with @@ -28,7 +28,7 @@ dnl removed do a=0. dnl dnl see http://sourceware.org/autobook/autobook/autobook_91.html dnl -LIBVERS=3:2:1 +LIBVERS=3:3:1 AC_SUBST(LIBVERS) AC_CANONICAL_TARGET diff --git a/program/doc/rrdbuild.pod b/program/doc/rrdbuild.pod index e02ac421..f8d3dd3e 100644 --- a/program/doc/rrdbuild.pod +++ b/program/doc/rrdbuild.pod @@ -41,7 +41,7 @@ Where you want to install the software. Once you have decided. Save the two locations into environment variables. BUILD_DIR=/tmp/rrdbuild - INSTALL_DIR=/usr/local/rrdtool-1.3rc4 + INSTALL_DIR=/usr/local/rrdtool-1.3rc5 If your F is mounted with the option noexec (RHEL seems todo that) you have to choose @@ -55,9 +55,9 @@ Now make sure the BUILD_DIR exists and go there: Lets first assume you already have all the necessary libraries pre-installed. - wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.3rc4.tar.gz - gunzip -c rrdtool-1.3rc4.tar.gz | tar xf - - cd rrdtool-1.3rc4 + wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.3rc5.tar.gz + gunzip -c rrdtool-1.3rc5.tar.gz | tar xf - + cd rrdtool-1.3rc5 ./configure --prefix=$INSTALL_DIR && make && make install Ok, this was very optimistic. This try will probably have ended with @@ -298,7 +298,7 @@ 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 their current state. - cd $BUILD_DIR/rrdtool-1.3rc4 + cd $BUILD_DIR/rrdtool-1.3rc5 ./configure --prefix=$INSTALL_DIR --disable-tcl --disable-python $MAKE clean $MAKE diff --git a/program/rrdtool.spec b/program/rrdtool.spec index 09f22b30..56922f27 100644 --- a/program/rrdtool.spec +++ b/program/rrdtool.spec @@ -7,7 +7,7 @@ Summary: Round Robin Database Tool to store and display time-series data Name: rrdtool -Version: 1.3rc4 +Version: 1.3rc5 Release: 0.1%{?dist} License: GPL Group: Applications/Databases diff --git a/program/src/pngsize.c b/program/src/pngsize.c index 1c695350..23dbce7d 100644 --- a/program/src/pngsize.c +++ b/program/src/pngsize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * pngsize.c determine the size of a PNG image *****************************************************************************/ diff --git a/program/src/rrd.h b/program/src/rrd.h index 75d051de..6077351b 100644 --- a/program/src/rrd.h +++ b/program/src/rrd.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrdlib.h Public header file for librrd ***************************************************************************** diff --git a/program/src/rrd_cgi.c b/program/src/rrd_cgi.c index 0355dfcf..c561100a 100644 --- a/program/src/rrd_cgi.c +++ b/program/src/rrd_cgi.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_cgi.c RRD Web Page Generator *****************************************************************************/ diff --git a/program/src/rrd_create.c b/program/src/rrd_create.c index 25c1133a..005d61b1 100644 --- a/program/src/rrd_create.c +++ b/program/src/rrd_create.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_create.c creates new rrds *****************************************************************************/ diff --git a/program/src/rrd_datalang.c b/program/src/rrd_datalang.c index 5af6322b..ea0ac7a4 100644 --- a/program/src/rrd_datalang.c +++ b/program/src/rrd_datalang.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_datalang A system for passing named and typed parameters between * the different parts of rrdtool diff --git a/program/src/rrd_diff.c b/program/src/rrd_diff.c index 45a7d1f0..b10a221f 100644 --- a/program/src/rrd_diff.c +++ b/program/src/rrd_diff.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 * This code is stolen from rateup (mrtg-2.x) by Dave Rand ***************************************************************************** * diff calculate the difference between two very long integers available as diff --git a/program/src/rrd_dump.c b/program/src/rrd_dump.c index 7b972e9d..d8c10908 100644 --- a/program/src/rrd_dump.c +++ b/program/src/rrd_dump.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_dump Display a RRD ***************************************************************************** diff --git a/program/src/rrd_error.c b/program/src/rrd_error.c index aec7fbc6..d85ca06c 100644 --- a/program/src/rrd_error.c +++ b/program/src/rrd_error.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_error.c Common Header File ***************************************************************************** diff --git a/program/src/rrd_fetch.c b/program/src/rrd_fetch.c index 917e9827..2e470d0d 100644 --- a/program/src/rrd_fetch.c +++ b/program/src/rrd_fetch.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_fetch.c read date from an rrd to use for further processing ***************************************************************************** diff --git a/program/src/rrd_first.c b/program/src/rrd_first.c index 34692e74..404b9f27 100644 --- a/program/src/rrd_first.c +++ b/program/src/rrd_first.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_first Return ***************************************************************************** diff --git a/program/src/rrd_format.c b/program/src/rrd_format.c index 600fc862..3e50f1f5 100644 --- a/program/src/rrd_format.c +++ b/program/src/rrd_format.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_format.c RRD Database Format helper functions ***************************************************************************** diff --git a/program/src/rrd_format.h b/program/src/rrd_format.h index 8539f026..a6dd72d8 100644 --- a/program/src/rrd_format.h +++ b/program/src/rrd_format.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_format.h RRD Database Format header *****************************************************************************/ diff --git a/program/src/rrd_gfx.c b/program/src/rrd_gfx.c index 5e5072d2..575e3572 100644 --- a/program/src/rrd_gfx.c +++ b/program/src/rrd_gfx.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 **************************************************************************** * rrd_gfx.c graphics wrapper for rrdtool **************************************************************************/ diff --git a/program/src/rrd_graph.c b/program/src/rrd_graph.c index eae4c3db..00fcc2ab 100644 --- a/program/src/rrd_graph.c +++ b/program/src/rrd_graph.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 **************************************************************************** * rrd__graph.c produce graphs from data in rrdfiles ****************************************************************************/ diff --git a/program/src/rrd_graph_helper.c b/program/src/rrd_graph_helper.c index f9c01871..f57876ac 100644 --- a/program/src/rrd_graph_helper.c +++ b/program/src/rrd_graph_helper.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 **************************************************************************** * rrd_graph_helper.c commandline parser functions * this code initially written by Alex van den Bogaerdt diff --git a/program/src/rrd_hw.c b/program/src/rrd_hw.c index 6522949d..12af4600 100644 --- a/program/src/rrd_hw.c +++ b/program/src/rrd_hw.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_hw.c : Support for Holt-Winters Smoothing/ Aberrant Behavior Detection ***************************************************************************** diff --git a/program/src/rrd_hw.h b/program/src/rrd_hw.h index 1ac24b74..de195c4b 100644 --- a/program/src/rrd_hw.h +++ b/program/src/rrd_hw.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_hw.h : Support for Holt-Winters Smoothing/ Aberrant Behavior Detection *****************************************************************************/ diff --git a/program/src/rrd_i18n.h b/program/src/rrd_i18n.h index a75a8361..38a3f084 100644 --- a/program/src/rrd_i18n.h +++ b/program/src/rrd_i18n.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Takao Fujiwara, 2008 + * RRDtool 1.3rc5 Copyright by Takao Fujiwara, 2008 ***************************************************************************** * rrd_i18n.h Common Header File *****************************************************************************/ diff --git a/program/src/rrd_info.c b/program/src/rrd_info.c index 389607d2..28bb4de1 100644 --- a/program/src/rrd_info.c +++ b/program/src/rrd_info.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_info Get Information about the configuration of an RRD *****************************************************************************/ diff --git a/program/src/rrd_is_thread_safe.h b/program/src/rrd_is_thread_safe.h index 8fc48792..d9e2c4d9 100644 --- a/program/src/rrd_is_thread_safe.h +++ b/program/src/rrd_is_thread_safe.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL diff --git a/program/src/rrd_last.c b/program/src/rrd_last.c index c38b9db8..93005882 100644 --- a/program/src/rrd_last.c +++ b/program/src/rrd_last.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_last.c ***************************************************************************** diff --git a/program/src/rrd_lastupdate.c b/program/src/rrd_lastupdate.c index b42194cc..e2dd438f 100644 --- a/program/src/rrd_lastupdate.c +++ b/program/src/rrd_lastupdate.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_lastupdate Get the last datum entered for each DS *****************************************************************************/ diff --git a/program/src/rrd_not_thread_safe.c b/program/src/rrd_not_thread_safe.c index b5b90135..25922e76 100644 --- a/program/src/rrd_not_thread_safe.c +++ b/program/src/rrd_not_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL diff --git a/program/src/rrd_open.c b/program/src/rrd_open.c index 2ef43095..1d13caa9 100644 --- a/program/src/rrd_open.c +++ b/program/src/rrd_open.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_open.c Open an RRD File ***************************************************************************** diff --git a/program/src/rrd_resize.c b/program/src/rrd_resize.c index f113e69f..6a23ae8c 100644 --- a/program/src/rrd_resize.c +++ b/program/src/rrd_resize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_resize.c Alters size of an RRA ***************************************************************************** diff --git a/program/src/rrd_restore.c b/program/src/rrd_restore.c index d90ecebc..29567dd9 100644 --- a/program/src/rrd_restore.c +++ b/program/src/rrd_restore.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 * This file: Copyright 2008 Florian octo Forster * Distributed under the GPL ***************************************************************************** diff --git a/program/src/rrd_rpncalc.c b/program/src/rrd_rpncalc.c index b19c7dab..3fd8d09b 100644 --- a/program/src/rrd_rpncalc.c +++ b/program/src/rrd_rpncalc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 **************************************************************************** * rrd_rpncalc.c RPN calculator functions ****************************************************************************/ diff --git a/program/src/rrd_rpncalc.h b/program/src/rrd_rpncalc.h index 1930e92c..693eebdb 100644 --- a/program/src/rrd_rpncalc.h +++ b/program/src/rrd_rpncalc.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 **************************************************************************** * rrd_rpncalc.h RPN calculator functions ****************************************************************************/ diff --git a/program/src/rrd_thread_safe.c b/program/src/rrd_thread_safe.c index 02bacd4d..2499f6ac 100644 --- a/program/src/rrd_thread_safe.c +++ b/program/src/rrd_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL diff --git a/program/src/rrd_thread_safe_nt.c b/program/src/rrd_thread_safe_nt.c index ca52c182..25981664 100644 --- a/program/src/rrd_thread_safe_nt.c +++ b/program/src/rrd_thread_safe_nt.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 * This file: Copyright 2003 Peter Stamfest * & Tobias Oetiker * Distributed under the GPL diff --git a/program/src/rrd_tool.c b/program/src/rrd_tool.c index 169631c1..6c1d4d06 100644 --- a/program/src/rrd_tool.c +++ b/program/src/rrd_tool.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_tool.c Startup wrapper *****************************************************************************/ diff --git a/program/src/rrd_tool.h b/program/src/rrd_tool.h index 5182898e..0fdaa769 100644 --- a/program/src/rrd_tool.h +++ b/program/src/rrd_tool.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_tool.h Common Header File *****************************************************************************/ diff --git a/program/src/rrd_tune.c b/program/src/rrd_tune.c index caa2ddad..00946dff 100644 --- a/program/src/rrd_tune.c +++ b/program/src/rrd_tune.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * change header parameters of an rrd ***************************************************************************** diff --git a/program/src/rrd_update.c b/program/src/rrd_update.c index becce2c4..561dc054 100644 --- a/program/src/rrd_update.c +++ b/program/src/rrd_update.c @@ -1,6 +1,6 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_update.c RRD Update Function ***************************************************************************** diff --git a/program/src/rrd_version.c b/program/src/rrd_version.c index ed1098c3..35f9c5ab 100644 --- a/program/src/rrd_version.c +++ b/program/src/rrd_version.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrd_version Return ***************************************************************************** diff --git a/program/src/rrd_xport.c b/program/src/rrd_xport.c index a439b4a5..6e1260a8 100644 --- a/program/src/rrd_xport.c +++ b/program/src/rrd_xport.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 **************************************************************************** * rrd_xport.c export RRD data ****************************************************************************/ diff --git a/program/src/rrd_xport.h b/program/src/rrd_xport.h index b38d551c..4d482634 100644 --- a/program/src/rrd_xport.h +++ b/program/src/rrd_xport.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 **************************************************************************** * rrd_xport.h contains XML related constants ****************************************************************************/ diff --git a/program/src/rrdupdate.c b/program/src/rrdupdate.c index 481ade2f..716fa804 100644 --- a/program/src/rrdupdate.c +++ b/program/src/rrdupdate.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3rc4 Copyright by Tobi Oetiker, 1997-2008 + * RRDtool 1.3rc5 Copyright by Tobi Oetiker, 1997-2008 ***************************************************************************** * rrdupdate.c Main program for the (standalone) rrdupdate utility ***************************************************************************** -- 2.30.2