From: oetiker Date: Fri, 22 Apr 2005 18:35:15 +0000 (+0000) Subject: prep for 1.2rc9 release X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=1ea4ec98454578059cf98abaea75e40a0e9e2fa1;p=rrdtool-all.git prep for 1.2rc9 release git-svn-id: svn://svn.oetiker.ch/rrdtool/branches/1.2@420 a5681a0c-68f1-0310-ab6d-d61299d08faa --- diff --git a/program/NEWS b/program/NEWS index dc5d5325..35536210 100644 --- a/program/NEWS +++ b/program/NEWS @@ -53,70 +53,3 @@ Behind the Scenes system. * Memory Mapped IO support for faster logging. - ---------------- - - Configure and Makefiles and accordingly. - -2002/03/26 Peter Speck - Contribution of an svg output routine for the new gfx graphing part - -2002/03/23 Alex van den Bogaerdt - Several visible changes made to rrd_graph - * Pie chart support workable - * Elements that are not used do not take up space on the img - * Hack for the missing rotated text (see --vertical-label) - * Tiny boxes in front of labels now scale with the text - -2002/01/15 Tobias Oetiker - The BIG graph update - * Replace libgd with libart - * Added freetype - * Updated zlib and libpng - * rrd_gfx.c intrduced as libart wrapper - * LINE takes now a float as argument - * RRDtool uses truetype for fonts - * thanks to libart there is now full alpha transparenc - and antialiasing. - * the new option --font lets customize the font - and size for various graph elements - * Updated to -> libtool 1.4.2 automake 2.12 autoconf 2.52 - * new --zoom commandline option for zoom ans shrinking - ---- Still missing is rotatet text for the yaxis description - ---- Still missing is tab support in the text rendere - ---- Still missing is autoconf support for a default truetype font - -2001/07/26 Alex van den Bogaerdt - Added TOTAL to the VDEF functions. - -2001/07/19 Alex van den Bogaerdt - VDEF support. This is a variable containing one value - and a time component. This type of variable can hold - the result of a function over a complete time series - of data (DEF or CDEF) such as the maximum seen, and when. - -2001/03/10 Jake Brutlag - Support for COMPUTE data sources (CDEF data sources). Removes the RPN - parser and calculator from rrd_graph and puts then in a new file, - rrd_rpncalc.c. Changes to core files rrd_create and rrd_update. Some - clean-up of aberrant behavior stuff, including a bug fix. - Documentation update (rrdcreate.pod, rrdupdate.pod). Change xml format. - -2001/03/07 Tobias Oetiker - Integrated complete rewrite - of rrdgraph documentation by Alex van den Bogaerdt - . This also contains info on his planned - changes to the rrdgraph module - -2001/03/02 Tobias Oetiker - Added Aberrant Patch from Jake Brutlag - From now one, new rrd files use version tag 0002. They can - NOT be read by the old 1.0.x RRDtools. - - Jake: - Aberrant Behavior Detection support. A brief overview added to - rrdtool.pod. Major updates to rrd_update.c, rrd_create.c. Minor update to - other core files. Updated documentation: rrdcreate.pod, rrdgraph.pod, - rrdtune.pod. This is backwards compatible (i.e. new tool can read and will - leave the binary header unchanged for old files). - See http://cricket.sourceforge.net/aberrant/rrd_hw.htm diff --git a/program/bindings/perl-piped/RRDp.pm b/program/bindings/perl-piped/RRDp.pm index 06444ece..2921393d 100644 --- a/program/bindings/perl-piped/RRDp.pm +++ b/program/bindings/perl-piped/RRDp.pm @@ -110,7 +110,7 @@ sub cmd (@); sub end (); sub read (); -$VERSION=1.199908; +$VERSION=1.199909; sub start ($){ croak "rrdtool is already running" diff --git a/program/bindings/perl-shared/RRDs.pm b/program/bindings/perl-shared/RRDs.pm index c2c092ef..32e4dc94 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.199908; +$VERSION=1.199909; bootstrap RRDs $VERSION; diff --git a/program/configure.ac b/program/configure.ac index 4dcfee6b..2a0f299a 100644 --- a/program/configure.ac +++ b/program/configure.ac @@ -6,7 +6,7 @@ dnl dnl Inspiration from http://autoconf-archive.cryp.to dnl tell automake the this script is for rrdtool -AC_INIT([rrdtool],[1.2rc8]) +AC_INIT([rrdtool],[1.2rc9]) AC_CANONICAL_TARGET AM_INIT_AUTOMAKE AC_CONFIG_HEADERS([config.h]) diff --git a/program/rrdtool.spec b/program/rrdtool.spec index d2d1494c..fe816326 100644 --- a/program/rrdtool.spec +++ b/program/rrdtool.spec @@ -4,7 +4,7 @@ Summary: Round Robin Database Tools Name: rrdtool -Version: 1.2rc8 +Version: 1.2rc9 Release: %{cvsver} License: GPL Group: Applications/Databases diff --git a/program/src/Makefile.am b/program/src/Makefile.am index 6f3928c8..4caf416f 100644 --- a/program/src/Makefile.am +++ b/program/src/Makefile.am @@ -63,8 +63,41 @@ librrd_la_SOURCES = $(RRD_C_FILES) rrd_not_thread_safe.c #librrd_private_la_SOURCES = $(RRD_C_FILES) rrd_not_thread_safe.c # librrd_la_LIBADD = $(RRD_LIBS) + +# This flag accepts an argument of the form current[:revision[:age]]. So, +# passing -version-info 3:12:1 sets current to 3, revision to 12, and age to 1. +# +# If either revision or age are omitted, they default to 0. Also note that +# age must be less than or equal to the current interface number. +# +# Here are a set of rules to help you update your library version information: +# +# 1. Start with version information of 0:0:0 for each libtool library. +# +# 2. Update the version information only immediately before a public +# release of your software. More frequent updates are unnecessary, and +# only guarantee that the current interface number gets larger faster. +# +# 3. If the library source code has changed at all since the last update, +# then increment revision (c:r:a becomes c:r+1:a). +# +# 4. If any interfaces have been added, removed, or changed since the last +# update, increment current, and set revision to 0. +# +# 5. If any interfaces have been added since the last public release, then +# increment age. +# +# 6. If any interfaces have been removed since the last public release, +# then set age to 0. +# +# Never try to set the interface numbers so that they correspond to the +# release number of your package. This is an abuse that only fosters +# misunderstanding of the purpose of library versions. Instead, use the +# -release flag (see Release numbers), but be warned that every release of +# your package will not be binary compatible with any other release. +# # see http://www.gnu.org/software/libtool/manual.html#SEC32 for explanation -librrd_la_LDFLAGS = -version-info 1:0:0 +librrd_la_LDFLAGS = -version-info 2:0:0 librrd_th_la_SOURCES = $(RRD_C_FILES) rrd_thread_safe.c librrd_th_la_CFLAGS = $(MULTITHREAD_CFLAGS) diff --git a/program/src/gdpng.c b/program/src/gdpng.c index 2c8315b4..e5b56516 100644 --- a/program/src/gdpng.c +++ b/program/src/gdpng.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * gdpng.c add PNG output routine to gd library *****************************************************************************/ diff --git a/program/src/gifsize.c b/program/src/gifsize.c index e23ff71d..3cbffac8 100644 --- a/program/src/gifsize.c +++ b/program/src/gifsize.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * gifsize.c provides the function gifsize which determines the size of a gif ****************************************************************************/ diff --git a/program/src/pngsize.c b/program/src/pngsize.c index 207b0515..f38cd0de 100644 --- a/program/src/pngsize.c +++ b/program/src/pngsize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * pngsize.c determine the size of a PNG image *****************************************************************************/ diff --git a/program/src/rrd.h b/program/src/rrd.h index 75629264..d907d184 100644 --- a/program/src/rrd.h +++ b/program/src/rrd.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrdlib.h Public header file for librrd ***************************************************************************** diff --git a/program/src/rrd_afm.c b/program/src/rrd_afm.c index 8e2dfd3e..622b4d03 100644 --- a/program/src/rrd_afm.c +++ b/program/src/rrd_afm.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_afm.h Parsing afm tables to find width of strings. ****************************************************************************/ diff --git a/program/src/rrd_afm.h b/program/src/rrd_afm.h index bf26a1ab..9db584cf 100644 --- a/program/src/rrd_afm.h +++ b/program/src/rrd_afm.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_afm.h Parsing afm tables to find width of strings. ****************************************************************************/ diff --git a/program/src/rrd_afm_data.c b/program/src/rrd_afm_data.c index 3b36f70d..1a110348 100644 --- a/program/src/rrd_afm_data.c +++ b/program/src/rrd_afm_data.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_afm_data.c Encoded afm (Adobe Font Metrics) for selected fonts. **************************************************************************** diff --git a/program/src/rrd_afm_data.h b/program/src/rrd_afm_data.h index 8a2e2516..f7ea59b4 100644 --- a/program/src/rrd_afm_data.h +++ b/program/src/rrd_afm_data.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_afm_data.h Encoded afm (Adobe Font Metrics) for selected fonts. ****************************************************************************/ diff --git a/program/src/rrd_cgi.c b/program/src/rrd_cgi.c index 9e6aaa23..6f59358e 100644 --- a/program/src/rrd_cgi.c +++ b/program/src/rrd_cgi.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_cgi.c RRD Web Page Generator *****************************************************************************/ diff --git a/program/src/rrd_create.c b/program/src/rrd_create.c index f8208b81..aeac2120 100644 --- a/program/src/rrd_create.c +++ b/program/src/rrd_create.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_create.c creates new rrds *****************************************************************************/ diff --git a/program/src/rrd_datalang.c b/program/src/rrd_datalang.c index 932d9e7e..3c76b167 100644 --- a/program/src/rrd_datalang.c +++ b/program/src/rrd_datalang.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * 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 2836406f..fdc721fd 100644 --- a/program/src/rrd_diff.c +++ b/program/src/rrd_diff.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 * 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 197af520..90c2c9dc 100644 --- a/program/src/rrd_dump.c +++ b/program/src/rrd_dump.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_dump Display a RRD ***************************************************************************** diff --git a/program/src/rrd_error.c b/program/src/rrd_error.c index 38373dea..850e7ebf 100644 --- a/program/src/rrd_error.c +++ b/program/src/rrd_error.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_error.c Common Header File ***************************************************************************** diff --git a/program/src/rrd_fetch.c b/program/src/rrd_fetch.c index d5fe7ed6..9d32b19d 100644 --- a/program/src/rrd_fetch.c +++ b/program/src/rrd_fetch.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * 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 518cbd32..70aa1e12 100644 --- a/program/src/rrd_first.c +++ b/program/src/rrd_first.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_first Return ***************************************************************************** diff --git a/program/src/rrd_format.c b/program/src/rrd_format.c index ebd72303..5570e0b0 100644 --- a/program/src/rrd_format.c +++ b/program/src/rrd_format.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_format.c RRD Database Format helper functions ***************************************************************************** diff --git a/program/src/rrd_format.h b/program/src/rrd_format.h index 1d6ec973..8d374062 100644 --- a/program/src/rrd_format.h +++ b/program/src/rrd_format.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_format.h RRD Database Format header *****************************************************************************/ diff --git a/program/src/rrd_gfx.c b/program/src/rrd_gfx.c index ba4c02c8..f1176ab2 100644 --- a/program/src/rrd_gfx.c +++ b/program/src/rrd_gfx.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_gfx.c graphics wrapper for rrdtool **************************************************************************/ @@ -1379,7 +1379,7 @@ static int eps_prologue(eps_state *state) gfx_node_t *node; fputs( "%!PS-Adobe-3.0 EPSF-3.0\n" - "%%Creator: RRDtool 1.2rc8 Tobias Oetiker, http://tobi.oetiker.ch\n" + "%%Creator: RRDtool 1.2rc9 Tobias Oetiker, http://tobi.oetiker.ch\n" /* can't like weird chars here */ "%%Title: (RRDtool output)\n" "%%DocumentData: Clean7Bit\n" diff --git a/program/src/rrd_gfx.h b/program/src/rrd_gfx.h index d3dda9c6..0f65a3c2 100644 --- a/program/src/rrd_gfx.h +++ b/program/src/rrd_gfx.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_gfx.h generic graphics adapter library ****************************************************************************/ diff --git a/program/src/rrd_graph.c b/program/src/rrd_graph.c index 97ede521..79a23be4 100644 --- a/program/src/rrd_graph.c +++ b/program/src/rrd_graph.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * 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 e2774a65..957087c0 100644 --- a/program/src/rrd_graph_helper.c +++ b/program/src/rrd_graph_helper.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * 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 4081f3fc..3e229e33 100644 --- a/program/src/rrd_hw.c +++ b/program/src/rrd_hw.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * 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 c015dcb7..ff79c89b 100644 --- a/program/src/rrd_hw.h +++ b/program/src/rrd_hw.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_hw.h : Support for Holt-Winters Smoothing/ Aberrant Behavior Detection *****************************************************************************/ diff --git a/program/src/rrd_info.c b/program/src/rrd_info.c index 4d78ce9c..0037ff61 100644 --- a/program/src/rrd_info.c +++ b/program/src/rrd_info.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * 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 521edec3..123aae81 100644 --- a/program/src/rrd_is_thread_safe.h +++ b/program/src/rrd_is_thread_safe.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 * 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 ab2c9afb..6b26f81e 100644 --- a/program/src/rrd_last.c +++ b/program/src/rrd_last.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_last.c ***************************************************************************** diff --git a/program/src/rrd_not_thread_safe.c b/program/src/rrd_not_thread_safe.c index 85d2db1d..f7d746ca 100644 --- a/program/src/rrd_not_thread_safe.c +++ b/program/src/rrd_not_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 * 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 9f188b12..76c333f6 100644 --- a/program/src/rrd_open.c +++ b/program/src/rrd_open.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_open.c Open an RRD File ***************************************************************************** diff --git a/program/src/rrd_resize.c b/program/src/rrd_resize.c index b95e29bf..04a03a5e 100644 --- a/program/src/rrd_resize.c +++ b/program/src/rrd_resize.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_resize.c Alters size of an RRA ***************************************************************************** diff --git a/program/src/rrd_restore.c b/program/src/rrd_restore.c index b1d15fc2..e8974e5f 100644 --- a/program/src/rrd_restore.c +++ b/program/src/rrd_restore.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_restore.c creates new rrd from data dumped by rrd_dump.c *****************************************************************************/ diff --git a/program/src/rrd_rpncalc.c b/program/src/rrd_rpncalc.c index 25c6b1cb..f6ff3c99 100644 --- a/program/src/rrd_rpncalc.c +++ b/program/src/rrd_rpncalc.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_rpncalc.c RPN calculator functions ****************************************************************************/ diff --git a/program/src/rrd_rpncalc.h b/program/src/rrd_rpncalc.h index 43f9659b..90a7c53d 100644 --- a/program/src/rrd_rpncalc.h +++ b/program/src/rrd_rpncalc.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_rpncalc.h RPN calculator functions ****************************************************************************/ diff --git a/program/src/rrd_stat.c b/program/src/rrd_stat.c index 66e98700..9c7fd871 100644 --- a/program/src/rrd_stat.c +++ b/program/src/rrd_stat.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_stat Retreive the header part of an RRD *****************************************************************************/ diff --git a/program/src/rrd_thread_safe.c b/program/src/rrd_thread_safe.c index 8d3f483d..1c03863f 100644 --- a/program/src/rrd_thread_safe.c +++ b/program/src/rrd_thread_safe.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 * 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 417e7594..aac1797d 100644 --- a/program/src/rrd_thread_safe_nt.c +++ b/program/src/rrd_thread_safe_nt.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 * 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 c8a33832..43f5c08c 100644 --- a/program/src/rrd_tool.c +++ b/program/src/rrd_tool.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_tool.c Startup wrapper *****************************************************************************/ @@ -22,7 +22,7 @@ void PrintUsage(char *cmd) { char help_main[] = - "RRDtool 1.2rc8 Copyright 1997-2005 by Tobias Oetiker \n" + "RRDtool 1.2rc9 Copyright 1997-2005 by Tobias Oetiker \n" #if defined(WIN32) && !defined(__CYGWIN__) && !defined(__CYGWIN32__) " Compiled " __DATE__ " " __TIME__ "\n\n" #else @@ -549,7 +549,7 @@ int HandleInputLine(int argc, char **argv, FILE* out) strcmp("v", argv[1]) == 0 || strcmp("-v", argv[1]) == 0 || strcmp("-version", argv[1]) == 0 ) - printf("RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005\n"); + printf("RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005\n"); else if (strcmp("restore", argv[1]) == 0) rrd_restore(argc-1, &argv[1]); else if (strcmp("resize", argv[1]) == 0) diff --git a/program/src/rrd_tool.h b/program/src/rrd_tool.h index 40d7cd07..845c349d 100644 --- a/program/src/rrd_tool.h +++ b/program/src/rrd_tool.h @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_tool.h Common Header File *****************************************************************************/ diff --git a/program/src/rrd_tune.c b/program/src/rrd_tune.c index a78b4348..706314e4 100644 --- a/program/src/rrd_tune.c +++ b/program/src/rrd_tune.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * change header parameters of an rrd ***************************************************************************** diff --git a/program/src/rrd_update.c b/program/src/rrd_update.c index 3a8f9f0f..99af7e44 100644 --- a/program/src/rrd_update.c +++ b/program/src/rrd_update.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_update.c RRD Update Function ***************************************************************************** @@ -89,7 +89,7 @@ int main(int argc, char **argv){ rrd_update(argc,argv); if (rrd_test_error()) { - printf("RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005\n\n" + printf("RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005\n\n" "Usage: rrdupdate filename\n" "\t\t\t[--template|-t ds-name:ds-name:...]\n" "\t\t\ttime|N:value[:value...]\n\n" diff --git a/program/src/rrd_xport.c b/program/src/rrd_xport.c index 40988357..2dbc99d9 100644 --- a/program/src/rrd_xport.c +++ b/program/src/rrd_xport.c @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_xport.c export RRD data ****************************************************************************/ diff --git a/program/src/rrd_xport.h b/program/src/rrd_xport.h index c0e77e3f..b30c7170 100644 --- a/program/src/rrd_xport.h +++ b/program/src/rrd_xport.h @@ -1,5 +1,5 @@ /**************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 **************************************************************************** * rrd_xport.h contains XML related constants ****************************************************************************/ diff --git a/program/src/rrdupdate.c b/program/src/rrdupdate.c index c297710d..7158c803 100644 --- a/program/src/rrdupdate.c +++ b/program/src/rrdupdate.c @@ -1,5 +1,5 @@ /***************************************************************************** - * RRDtool 1.2rc8 Copyright by Tobi Oetiker, 1997-2005 + * RRDtool 1.2rc9 Copyright by Tobi Oetiker, 1997-2005 ***************************************************************************** * rrd_update.c RRD Update Function ***************************************************************************** @@ -45,7 +45,7 @@ int main(int argc, char **argv){ rrd_update(argc,argv); if (rrd_test_error()) { - printf("RRDtool 1.2rc8 Copyright 1997-2005 by Tobias Oetiker \n\n" + printf("RRDtool 1.2rc9 Copyright 1997-2005 by Tobias Oetiker \n\n" "Usage: rrdupdate filename\n" "\t\t\t[--template|-t ds-name:ds-name:...]\n" "\t\t\ttime|N:value[:value...]\n\n"