From b5006293de86a2314ae0a954a9d2d6913510a374 Mon Sep 17 00:00:00 2001 From: oetiker Date: Tue, 24 Jan 2012 10:08:48 +0000 Subject: [PATCH] prepare for the release of rrdtool-1.4.7 git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.4@2267 a5681a0c-68f1-0310-ab6d-d61299d08faa --- program/CHANGES | 24 ++++++++++++++++++++++++ program/bindings/perl-piped/RRDp.pm | 2 +- program/bindings/perl-shared/RRDs.pm | 2 +- program/configure.ac | 4 ++-- 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 +- 44 files changed, 72 insertions(+), 48 deletions(-) diff --git a/program/CHANGES b/program/CHANGES index 8a390283..cca8bf5e 100644 --- a/program/CHANGES +++ b/program/CHANGES @@ -1,3 +1,27 @@ +RRDtool 1.4.7 - 2012-01-24 +========================== +Bugfixes: + +* test for tm.tm_gmtoff presence in configure.ac fix for #330 (libdbi + compiles on solaris should now work too) + +* check in /usr/lib64 for tclConfig.sh too + +* fix shared library version number (regression from 1.4.6) + +* be clearer as to what VDEF LAST/FIRST do. + +* remove perl 5.004 compatibility hack and make RRDs compile with newer + perls. + +New Functionality: + +* added a nop control for string formating, so that strings ending in /x are + possible by entering \x\. fix for #331 + +* added support for rrdgraph to use the yotta, zetta, zepto, yocto prefixes. + Fix for #333 (thanks Christoph) + RRDtool 1.4.6 - 2012-01-16 ========================== Enhancements: diff --git a/program/bindings/perl-piped/RRDp.pm b/program/bindings/perl-piped/RRDp.pm index b61102f3..f001a3df 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.4006; +$VERSION=1.4007; sub start ($){ croak "rrdtool is already running" diff --git a/program/bindings/perl-shared/RRDs.pm b/program/bindings/perl-shared/RRDs.pm index d6ebb34f..761e26bd 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.4006; +$VERSION=1.4007; bootstrap RRDs $VERSION; diff --git a/program/configure.ac b/program/configure.ac index 6d281906..b686bc0b 100644 --- a/program/configure.ac +++ b/program/configure.ac @@ -13,14 +13,14 @@ AC_PREREQ(2.59) dnl the official version number is dnl a.b.c -AC_INIT([rrdtool],[1.4.6]) +AC_INIT([rrdtool],[1.4.7]) 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.4006 +NUMVERS=1.4007 AC_SUBST(NUMVERS) dnl for the linker to understand which versions the library are compatible with diff --git a/program/doc/rrdbuild.pod b/program/doc/rrdbuild.pod index 4bc43e9e..7e1c0fe9 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=/opt/rrdtool-1.4.6 + INSTALL_DIR=/opt/rrdtool-1.4.7 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.4.6.tar.gz - gunzip -c rrdtool-1.4.6.tar.gz | tar xf - - cd rrdtool-1.4.6 + wget http://oss.oetiker.ch/rrdtool/pub/rrdtool-1.4.7.tar.gz + gunzip -c rrdtool-1.4.7.tar.gz | tar xf - + cd rrdtool-1.4.7 ./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.4.6 + cd $BUILD_DIR/rrdtool-1.4.7 ./configure --prefix=$INSTALL_DIR --disable-tcl --disable-python $MAKE clean $MAKE diff --git a/program/rrdtool.spec b/program/rrdtool.spec index 49e85c4b..e447ae06 100644 --- a/program/rrdtool.spec +++ b/program/rrdtool.spec @@ -10,7 +10,7 @@ Summary: Round Robin Database Tool to store and display time-series data Name: rrdtool -Version: 1.4.6 +Version: 1.4.7 Release: 1%{?dist} License: GPLv2+ with exceptions Group: Applications/Databases diff --git a/program/src/pngsize.c b/program/src/pngsize.c index 74bf6580..2dd3ca6f 100644 --- a/program/src/pngsize.c +++ b/program/src/pngsize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * pngsize.c determine the size of a PNG image *****************************************************************************/ diff --git a/program/src/rrd.h b/program/src/rrd.h index 5817d953..7e6ae9ea 100644 --- a/program/src/rrd.h +++ b/program/src/rrd.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrdlib.h Public header file for librrd ***************************************************************************** diff --git a/program/src/rrd_cgi.c b/program/src/rrd_cgi.c index a61e37b6..98487158 100644 --- a/program/src/rrd_cgi.c +++ b/program/src/rrd_cgi.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_cgi.c RRD Web Page Generator *****************************************************************************/ diff --git a/program/src/rrd_create.c b/program/src/rrd_create.c index f18ce99e..50e26652 100644 --- a/program/src/rrd_create.c +++ b/program/src/rrd_create.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_create.c creates new rrds *****************************************************************************/ diff --git a/program/src/rrd_datalang.c b/program/src/rrd_datalang.c index b210cb0b..7e41ea7a 100644 --- a/program/src/rrd_datalang.c +++ b/program/src/rrd_datalang.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * 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 82ae9e20..63155887 100644 --- a/program/src/rrd_diff.c +++ b/program/src/rrd_diff.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 * 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 30cfed5a..f7311b3c 100644 --- a/program/src/rrd_dump.c +++ b/program/src/rrd_dump.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_dump Display a RRD ***************************************************************************** diff --git a/program/src/rrd_error.c b/program/src/rrd_error.c index ba3914b8..3304e15e 100644 --- a/program/src/rrd_error.c +++ b/program/src/rrd_error.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_error.c Common Header File ***************************************************************************** diff --git a/program/src/rrd_fetch.c b/program/src/rrd_fetch.c index 57e900cc..c6975b25 100644 --- a/program/src/rrd_fetch.c +++ b/program/src/rrd_fetch.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * 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 d0eabc8d..34b0737a 100644 --- a/program/src/rrd_first.c +++ b/program/src/rrd_first.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_first Return ***************************************************************************** diff --git a/program/src/rrd_format.c b/program/src/rrd_format.c index 4a6a0bc5..b1580faf 100644 --- a/program/src/rrd_format.c +++ b/program/src/rrd_format.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_format.c RRD Database Format helper functions ***************************************************************************** diff --git a/program/src/rrd_format.h b/program/src/rrd_format.h index 58a8756a..48ab238f 100644 --- a/program/src/rrd_format.h +++ b/program/src/rrd_format.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_format.h RRD Database Format header *****************************************************************************/ diff --git a/program/src/rrd_gfx.c b/program/src/rrd_gfx.c index b3b8938b..79c79399 100644 --- a/program/src/rrd_gfx.c +++ b/program/src/rrd_gfx.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 **************************************************************************** * rrd_gfx.c graphics wrapper for rrdtool **************************************************************************/ diff --git a/program/src/rrd_graph.c b/program/src/rrd_graph.c index f40f16f7..5f70a384 100644 --- a/program/src/rrd_graph.c +++ b/program/src/rrd_graph.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 **************************************************************************** * 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 1211209a..00922a5e 100644 --- a/program/src/rrd_graph_helper.c +++ b/program/src/rrd_graph_helper.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 **************************************************************************** * 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 a667b751..97ac2b8b 100644 --- a/program/src/rrd_hw.c +++ b/program/src/rrd_hw.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * 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 ebbc8fd2..050455aa 100644 --- a/program/src/rrd_hw.h +++ b/program/src/rrd_hw.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * 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 ebcccc34..541d9970 100644 --- a/program/src/rrd_i18n.h +++ b/program/src/rrd_i18n.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Takao Fujiwara, 2008 + * RRDtool 1.4.7 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 ed7134ac..60e5104b 100644 --- a/program/src/rrd_info.c +++ b/program/src/rrd_info.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * 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 1eed4333..a677e2af 100644 --- a/program/src/rrd_is_thread_safe.h +++ b/program/src/rrd_is_thread_safe.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 * 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 1ab73977..e6ad2dc0 100644 --- a/program/src/rrd_last.c +++ b/program/src/rrd_last.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_last.c ***************************************************************************** diff --git a/program/src/rrd_lastupdate.c b/program/src/rrd_lastupdate.c index 77442b7d..acc1821f 100644 --- a/program/src/rrd_lastupdate.c +++ b/program/src/rrd_lastupdate.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 * Copyright by Florian Forster, 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 dedde46b..b0fd2c1f 100644 --- a/program/src/rrd_not_thread_safe.c +++ b/program/src/rrd_not_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 * 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 00734afd..ff332d02 100644 --- a/program/src/rrd_open.c +++ b/program/src/rrd_open.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_open.c Open an RRD File ***************************************************************************** diff --git a/program/src/rrd_resize.c b/program/src/rrd_resize.c index 8d154d56..b1b1e18d 100644 --- a/program/src/rrd_resize.c +++ b/program/src/rrd_resize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_resize.c Alters size of an RRA ***************************************************************************** diff --git a/program/src/rrd_restore.c b/program/src/rrd_restore.c index b8b53206..61174e3e 100644 --- a/program/src/rrd_restore.c +++ b/program/src/rrd_restore.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_restore.c Contains logic to parse XML input and create an RRD file * This file: diff --git a/program/src/rrd_rpncalc.c b/program/src/rrd_rpncalc.c index a612a21e..b3d77601 100644 --- a/program/src/rrd_rpncalc.c +++ b/program/src/rrd_rpncalc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 **************************************************************************** * rrd_rpncalc.c RPN calculator functions ****************************************************************************/ diff --git a/program/src/rrd_rpncalc.h b/program/src/rrd_rpncalc.h index 578de455..a15e0755 100644 --- a/program/src/rrd_rpncalc.h +++ b/program/src/rrd_rpncalc.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 **************************************************************************** * rrd_rpncalc.h RPN calculator functions ****************************************************************************/ diff --git a/program/src/rrd_thread_safe.c b/program/src/rrd_thread_safe.c index 4c36490d..6a7773a7 100644 --- a/program/src/rrd_thread_safe.c +++ b/program/src/rrd_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 * 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 42c982b0..55c6b3cf 100644 --- a/program/src/rrd_thread_safe_nt.c +++ b/program/src/rrd_thread_safe_nt.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 * 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 f4288afa..187b3e3e 100644 --- a/program/src/rrd_tool.c +++ b/program/src/rrd_tool.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_tool.c Startup wrapper *****************************************************************************/ diff --git a/program/src/rrd_tool.h b/program/src/rrd_tool.h index c72e2677..f9e0016a 100644 --- a/program/src/rrd_tool.h +++ b/program/src/rrd_tool.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_tool.h Common Header File *****************************************************************************/ diff --git a/program/src/rrd_tune.c b/program/src/rrd_tune.c index c4bc6503..d2f3b0fd 100644 --- a/program/src/rrd_tune.c +++ b/program/src/rrd_tune.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * change header parameters of an rrd ***************************************************************************** diff --git a/program/src/rrd_update.c b/program/src/rrd_update.c index 0df7e041..0b97ad2e 100644 --- a/program/src/rrd_update.c +++ b/program/src/rrd_update.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 * Copyright by Florian Forster, 2008 ***************************************************************************** * rrd_update.c RRD Update Function diff --git a/program/src/rrd_version.c b/program/src/rrd_version.c index 52c2b37d..b8845629 100644 --- a/program/src/rrd_version.c +++ b/program/src/rrd_version.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrd_version Return ***************************************************************************** diff --git a/program/src/rrd_xport.c b/program/src/rrd_xport.c index 9bb2360e..7c2fe611 100644 --- a/program/src/rrd_xport.c +++ b/program/src/rrd_xport.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 **************************************************************************** * rrd_xport.c export RRD data ****************************************************************************/ diff --git a/program/src/rrd_xport.h b/program/src/rrd_xport.h index 11fcaa67..57354959 100644 --- a/program/src/rrd_xport.h +++ b/program/src/rrd_xport.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 **************************************************************************** * rrd_xport.h contains XML related constants ****************************************************************************/ diff --git a/program/src/rrdupdate.c b/program/src/rrdupdate.c index 082693cd..322f4bb3 100644 --- a/program/src/rrdupdate.c +++ b/program/src/rrdupdate.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.4.6 Copyright by Tobi Oetiker, 1997-2012 + * RRDtool 1.4.7 Copyright by Tobi Oetiker, 1997-2012 ***************************************************************************** * rrdupdate.c Main program for the (standalone) rrdupdate utility ***************************************************************************** -- 2.30.2