From 20cb1d6acd05acde04df3afc3fdb25260de3e8ce Mon Sep 17 00:00:00 2001 From: oetiker Date: Tue, 19 May 2009 13:45:05 +0000 Subject: [PATCH] prepare for the release of rrdtool-1.3.8 git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.3@1801 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 14cccf46..fba90ae4 100644 --- a/program/bindings/perl-piped/RRDp.pm +++ b/program/bindings/perl-piped/RRDp.pm @@ -124,7 +124,7 @@ sub cmd (@); sub end (); sub read (); -$VERSION=1.3007; +$VERSION=1.3008; sub start ($){ croak "rrdtool is already running" diff --git a/program/bindings/perl-shared/RRDs.pm b/program/bindings/perl-shared/RRDs.pm index c9889d0d..3bcbdfc4 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.3007; +$VERSION=1.3008; bootstrap RRDs $VERSION; diff --git a/program/configure.ac b/program/configure.ac index 5a54d33d..ce37e4fd 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.3.7]) +AC_INIT([rrdtool],[1.3.8]) 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.3007 +NUMVERS=1.3008 AC_SUBST(NUMVERS) dnl for the linker to understand which versions the library are compatible with @@ -27,7 +27,7 @@ dnl - if any functionality was removed do c++,r=0,a=0. dnl dnl see http://sourceware.org/autobook/autobook/autobook_91.html dnl -LIBVERS=4:6:0 +LIBVERS=4:7:0 AC_SUBST(LIBVERS) AC_CANONICAL_TARGET diff --git a/program/doc/rrdbuild.pod b/program/doc/rrdbuild.pod index 85097220..4e420826 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.3.7 + INSTALL_DIR=/usr/local/rrdtool-1.3.8 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.3.7.tar.gz - gunzip -c rrdtool-1.3.7.tar.gz | tar xf - - cd rrdtool-1.3.7 + wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.3.8.tar.gz + gunzip -c rrdtool-1.3.8.tar.gz | tar xf - + cd rrdtool-1.3.8 ./configure --prefix=$INSTALL_DIR && make && make install Ok, this was very optimistic. This try will probably have ended with @@ -345,7 +345,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.3.7 + cd $BUILD_DIR/rrdtool-1.3.8 ./configure --prefix=$INSTALL_DIR --disable-tcl --disable-python $MAKE clean $MAKE diff --git a/program/rrdtool.spec b/program/rrdtool.spec index 221e1714..bd8ba345 100644 --- a/program/rrdtool.spec +++ b/program/rrdtool.spec @@ -9,7 +9,7 @@ Summary: Round Robin Database Tool to store and display time-series data Name: rrdtool -Version: 1.3.7 +Version: 1.3.8 Release: 1 License: GPLv2+ with exceptions Group: Applications/Databases diff --git a/program/src/pngsize.c b/program/src/pngsize.c index 9cd29e53..e4962b43 100644 --- a/program/src/pngsize.c +++ b/program/src/pngsize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * pngsize.c determine the size of a PNG image *****************************************************************************/ diff --git a/program/src/rrd.h b/program/src/rrd.h index 31a31289..a886ae82 100644 --- a/program/src/rrd.h +++ b/program/src/rrd.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrdlib.h Public header file for librrd ***************************************************************************** diff --git a/program/src/rrd_cgi.c b/program/src/rrd_cgi.c index ce619af1..5fd9c359 100644 --- a/program/src/rrd_cgi.c +++ b/program/src/rrd_cgi.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_cgi.c RRD Web Page Generator *****************************************************************************/ diff --git a/program/src/rrd_create.c b/program/src/rrd_create.c index a31f23e3..1f7c1ee2 100644 --- a/program/src/rrd_create.c +++ b/program/src/rrd_create.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_create.c creates new rrds *****************************************************************************/ diff --git a/program/src/rrd_datalang.c b/program/src/rrd_datalang.c index 7e585e21..1a4c89d7 100644 --- a/program/src/rrd_datalang.c +++ b/program/src/rrd_datalang.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * 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 cd7332cd..21a74af3 100644 --- a/program/src/rrd_diff.c +++ b/program/src/rrd_diff.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 * 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 e218e9cc..637970a8 100644 --- a/program/src/rrd_dump.c +++ b/program/src/rrd_dump.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_dump Display a RRD ***************************************************************************** diff --git a/program/src/rrd_error.c b/program/src/rrd_error.c index 49bf472b..1a6ac291 100644 --- a/program/src/rrd_error.c +++ b/program/src/rrd_error.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_error.c Common Header File ***************************************************************************** diff --git a/program/src/rrd_fetch.c b/program/src/rrd_fetch.c index de541928..9099e707 100644 --- a/program/src/rrd_fetch.c +++ b/program/src/rrd_fetch.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * 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 6a951a29..4c4fd906 100644 --- a/program/src/rrd_first.c +++ b/program/src/rrd_first.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_first Return ***************************************************************************** diff --git a/program/src/rrd_format.c b/program/src/rrd_format.c index 53272103..cf218643 100644 --- a/program/src/rrd_format.c +++ b/program/src/rrd_format.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_format.c RRD Database Format helper functions ***************************************************************************** diff --git a/program/src/rrd_format.h b/program/src/rrd_format.h index 524b91e2..2d3127e6 100644 --- a/program/src/rrd_format.h +++ b/program/src/rrd_format.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_format.h RRD Database Format header *****************************************************************************/ diff --git a/program/src/rrd_gfx.c b/program/src/rrd_gfx.c index 4f0cd422..bb197764 100644 --- a/program/src/rrd_gfx.c +++ b/program/src/rrd_gfx.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 **************************************************************************** * rrd_gfx.c graphics wrapper for rrdtool **************************************************************************/ diff --git a/program/src/rrd_graph.c b/program/src/rrd_graph.c index 0d25f99b..1ccbdf87 100644 --- a/program/src/rrd_graph.c +++ b/program/src/rrd_graph.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 **************************************************************************** * 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 31ea0235..06309f52 100644 --- a/program/src/rrd_graph_helper.c +++ b/program/src/rrd_graph_helper.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 **************************************************************************** * 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 e20aea67..4397f5ba 100644 --- a/program/src/rrd_hw.c +++ b/program/src/rrd_hw.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * 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 8ae7346c..58e06454 100644 --- a/program/src/rrd_hw.h +++ b/program/src/rrd_hw.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * 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 1099041d..adeed379 100644 --- a/program/src/rrd_i18n.h +++ b/program/src/rrd_i18n.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Takao Fujiwara, 2008 + * RRDtool 1.3.8 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 d4e62190..83364d20 100644 --- a/program/src/rrd_info.c +++ b/program/src/rrd_info.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * 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 9579e17c..61a81c1c 100644 --- a/program/src/rrd_is_thread_safe.h +++ b/program/src/rrd_is_thread_safe.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 * 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 cceeb4c4..96d2d09c 100644 --- a/program/src/rrd_last.c +++ b/program/src/rrd_last.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_last.c ***************************************************************************** diff --git a/program/src/rrd_lastupdate.c b/program/src/rrd_lastupdate.c index 7e843f4e..661c5c22 100644 --- a/program/src/rrd_lastupdate.c +++ b/program/src/rrd_lastupdate.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * 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 d01c00ec..ea77a910 100644 --- a/program/src/rrd_not_thread_safe.c +++ b/program/src/rrd_not_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 * 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 5c5b0f9e..a1b2670e 100644 --- a/program/src/rrd_open.c +++ b/program/src/rrd_open.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_open.c Open an RRD File ***************************************************************************** diff --git a/program/src/rrd_resize.c b/program/src/rrd_resize.c index f53d3c58..771209f4 100644 --- a/program/src/rrd_resize.c +++ b/program/src/rrd_resize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_resize.c Alters size of an RRA ***************************************************************************** diff --git a/program/src/rrd_restore.c b/program/src/rrd_restore.c index 962b64c4..95cdda3f 100644 --- a/program/src/rrd_restore.c +++ b/program/src/rrd_restore.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 * 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 fd56ffbf..b2d7adc5 100644 --- a/program/src/rrd_rpncalc.c +++ b/program/src/rrd_rpncalc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 **************************************************************************** * rrd_rpncalc.c RPN calculator functions ****************************************************************************/ diff --git a/program/src/rrd_rpncalc.h b/program/src/rrd_rpncalc.h index f15aa25b..317ffbd2 100644 --- a/program/src/rrd_rpncalc.h +++ b/program/src/rrd_rpncalc.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 **************************************************************************** * rrd_rpncalc.h RPN calculator functions ****************************************************************************/ diff --git a/program/src/rrd_thread_safe.c b/program/src/rrd_thread_safe.c index 81a4501a..0d45851e 100644 --- a/program/src/rrd_thread_safe.c +++ b/program/src/rrd_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 * 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 80b9c1c6..76280551 100644 --- a/program/src/rrd_thread_safe_nt.c +++ b/program/src/rrd_thread_safe_nt.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 * 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 2438c7f1..67359879 100644 --- a/program/src/rrd_tool.c +++ b/program/src/rrd_tool.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_tool.c Startup wrapper *****************************************************************************/ diff --git a/program/src/rrd_tool.h b/program/src/rrd_tool.h index 86787777..fbe55f54 100644 --- a/program/src/rrd_tool.h +++ b/program/src/rrd_tool.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_tool.h Common Header File *****************************************************************************/ diff --git a/program/src/rrd_tune.c b/program/src/rrd_tune.c index 5d9172df..1e6fa59f 100644 --- a/program/src/rrd_tune.c +++ b/program/src/rrd_tune.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * change header parameters of an rrd ***************************************************************************** diff --git a/program/src/rrd_update.c b/program/src/rrd_update.c index 7145215d..1ae36f9c 100644 --- a/program/src/rrd_update.c +++ b/program/src/rrd_update.c @@ -1,6 +1,6 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_update.c RRD Update Function ***************************************************************************** diff --git a/program/src/rrd_version.c b/program/src/rrd_version.c index 5c59dec3..11eb2e65 100644 --- a/program/src/rrd_version.c +++ b/program/src/rrd_version.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrd_version Return ***************************************************************************** diff --git a/program/src/rrd_xport.c b/program/src/rrd_xport.c index efb1cee6..50d094c4 100644 --- a/program/src/rrd_xport.c +++ b/program/src/rrd_xport.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 **************************************************************************** * rrd_xport.c export RRD data ****************************************************************************/ diff --git a/program/src/rrd_xport.h b/program/src/rrd_xport.h index 85dd072c..87177455 100644 --- a/program/src/rrd_xport.h +++ b/program/src/rrd_xport.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 **************************************************************************** * rrd_xport.h contains XML related constants ****************************************************************************/ diff --git a/program/src/rrdupdate.c b/program/src/rrdupdate.c index 199eceb3..664063b1 100644 --- a/program/src/rrdupdate.c +++ b/program/src/rrdupdate.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.3.7 Copyright by Tobi Oetiker, 1997-2009 + * RRDtool 1.3.8 Copyright by Tobi Oetiker, 1997-2009 ***************************************************************************** * rrdupdate.c Main program for the (standalone) rrdupdate utility ***************************************************************************** -- 2.30.2