Sophie

Sophie

distrib > Mandriva > 10.0-com > x86_64 > by-pkgid > 356c9add3596069888854292acb43302 > files > 4

rrdtool-1.0.46-1mdk.src.rpm

# OE: we have to use at least rversion because of 
# new PHP_BUILD policies
%define rname rrdtool
%define rversion 1.0.46
%define release 1mdk

%define major 0
%define libname %mklibname %{rname} %{major}

%define phpsource %{_prefix}/src/php-devel
%{expand:%(cat /usr/src/php-devel/PHP_BUILD||(echo -e "error: failed %build dependencies:\n        php-devel >= 430 (4.3.0) is needed by this %package." >/dev/stderr;kill -2 $PPID))}

%define realname RRDtool
%define modname %{rname}
%define dirname %{modname}
%define soname %{modname}.so
%define inifile 61_%{modname}.ini

Name:		%{rname}
Summary:	%{realname} - round robin database
Version:	%{rversion}
Release:	%{release}
License:	GPL
Group:		Networking/Other
URL:		http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/
Source:		http://ee-staff.ethz.ch/~oetiker/webtools/rrdtool/pub/%{rname}-%{rversion}.tar.bz2
Patch0:         rrdtool.doc.patch.bz2
Patch2:         rrdtool-1.0.46-annoyance_be_gone.patch.bz2
Requires:       libpng >= 1.0.3, zlib >= 1.1.3
BuildRequires:  libpng-devel >= 1.0.3, perl-devel libgd-devel, zlib-devel
BuildRequires:  php%{libversion}-devel, automake < 1.6
BuildRequires:  chrpath
Buildroot:      %{_tmppath}/%{rname}-%{rversion}-root

%description
RRD is the Acronym for Round Robin Database. RRD is a system to store and
display time-series data (i.e. network bandwidth, machine-room temperature,
server load average). It stores the data in a very compact way that will not
expand over time, and it presents useful graphs by processing the data to
enforce a certain data density. It can be used either via simple wrapper
scripts (from shell or Perl) or via frontends that poll network devices and
put a friendly user interface on it.

%package -n %{libname}
Summary:        %{realname} - round robin database static libraries and headers
Version:        %{rversion}
Group:          System/Libraries

%description -n %{libname}
RRD is the Acronym for Round Robin Database. RRD is a system to store and
display time-series data (i.e. network bandwidth, machine-room temperature,
server load average). This package allow you to use directly this library

%package -n %{libname}-devel
Summary:        %{realname} - round robin database static libraries and headers
Version:        %{rversion}
Group:          Development/Other
Requires:       %{libname} = %{rversion}
Requires:       libgd-devel
Provides:       librrdtool-devel
Obsoletes:      rrdtool-devel
Provides:       rrdtool-devel

%description -n %{libname}-devel
RRD is the Acronym for Round Robin Database. RRD is a system to store and
display time-series data (i.e. network bandwidth, machine-room temperature,
server load average). This package allow you to use directly this library.

%package -n php-%{modname}
Summary:        The %{realname} module for PHP
Version:        %{phpversion}_%{rversion}
Group:          System/Servers
Requires:       %{libname} = %{rversion}
Requires:       php%{libversion}
Provides:       ADVXpackage

%description -n php-%{modname}
The %{rname} package is a dynamic shared object (DSO) that adds
%{realname} support to PHP.
PHP is an HTML-embedded scripting language.
If you need %{realname} support for PHP applications,
you will need to install this package in addition to the php package.

%prep
%setup -q
%patch0 -b .doc
%patch2 

%build
%{__libtoolize} --copy --force
aclocal-1.7
%{__autoconf}

#CFLAGS="$RPM_OPT_FLAGS" LIBS="-lm -lz -lpng"
OPT_FLAGS=`echo $RPM_OPT_FLAGS | sed -e "s/-ffast-math//"`
CFLAGS="$OPT_FLAGS" \
%configure --enable-shared --enable-local-libpng --enable-local-zlib

%make PERL_MAKE_OPTIONS=INSTALLDIRS=vendor

# @perl@ and @PERL@ correction
%{__find} -type f | xargs %{__perl} -pi -e 's|^#! @perl@|#!/usr/bin/perl|gi'
%{__find} -name "*.pl" | xargs %{__perl} -pi -e 's;\015;;gi'

# build the php-rrdtool php extension addon
pushd contrib/php4
    %{phpsource}/buildext %{modname} "%{modname}.c" \
    "-L../../src/.libs -I../../src -lrrd" "-DHAVE_RRDTOOL -DCOMPILE_DL_RRDTOOL"
popd

%install
%{__rm} -rf %{buildroot}

%makeinstall

# equivalent of "make site-perl-install" except for the PREFIX
# "make site-perl-install" is not done by "make install"
%makeinstall_std -C perl-piped install_vendor
%makeinstall_std -C perl-shared install_vendor

%{__install} -d %{buildroot}%{_sbindir}

# now create include and files
%{__install} -d %{buildroot}%{_includedir}
%{__install} -m644 src/rrd*.h %{buildroot}%{_includedir}/
%{__install} -m755 contrib/log2rrd/log2rrd.pl %{buildroot}%{_sbindir}/

#moving the docs in the right place
%{__install} -d %{buildroot}%{_docdir}/%{rname}-%{rversion}/{pod,txt}

%{__mv} %{buildroot}%{_docdir}/*txt %{buildroot}/%{_docdir}/%{rname}-%{rversion}/txt/
%{__mv} %{buildroot}%{_docdir}/*pod %{buildroot}/%{_docdir}/%{rname}-%{rversion}/pod/
%{__mv} %{buildroot}%{_docdir}/html %{buildroot}/%{_docdir}/%{rname}-%{rversion}/
%{__mv} %{buildroot}%{_prefix}/examples/* %{buildroot}/%{_docdir}/%{rname}-%{rversion}/
%{__mv} %{buildroot}%{_prefix}/contrib/* %{buildroot}/%{_docdir}/%{rname}-%{rversion}/

#removing things installed in the wrong place
%{__rm} -rf %{buildroot}/%{_prefix}/lib/perl/*.pm
%{__rm} -rf %{buildroot}/%{_prefix}/lib/perl/auto/RRDs/RRDs*

%{__rm} -rf %{buildroot}/%{_prefix}/lib/perl5/site_perl

# icky ntmake.pl
%{__rm} -f %{buildroot}%{perl_vendorarch}/ntmake.pl

# install the php package
%{__mkdir} -p %{buildroot}%{phpdir}/extensions
%{__mkdir} -p %{buildroot}%{_sysconfdir}/php
%{__install} -m755 contrib/php4/%{soname} %{buildroot}%{phpdir}/extensions/

%{__cat} > README.%{modname} <<EOF
The %{rname} package contains a dynamic shared object (DSO) for PHP.
To activate it, make sure a file /etc/php/%{inifile} is present and
contains the line 'extension = %{soname}'.
EOF

%{__cat} > %{buildroot}%{_sysconfdir}/php/%{inifile} << EOF
extension = %{soname}
EOF

# I've tried and tried and tried to get rid of the rpath.
# It only appears after you do a make install, so I have
# no idea what is doing it but this gets rid of it...
chrpath -d %{buildroot}%{_bindir}/*

# remove .in/.am files
find %{buildroot} -name "*.in" | xargs %{__rm} -f
find %{buildroot} -name "*.am" | xargs %{__rm} -f

%clean
%{__rm} -rf %{buildroot}

%post -n %{libname} -p /sbin/ldconfig

%postun -n %{libname} -p /sbin/ldconfig

%files
%defattr(-,root,root)
%doc %{_docdir}/%{rname}*/*
%{_bindir}/*
%{_sbindir}/*
%{perl_vendorarch}/auto/*
%{perl_vendorarch}/*.pm
%{perl_vendorlib}/*.pm
%{_mandir}/man1/*
%{_mandir}/man3*/*

%files -n %{libname}
%defattr(-,root,root)
%doc COPYING
%{_libdir}/*.so.*

%files -n %{libname}-devel
%defattr(-,root,root)
%doc COPYING
%{_libdir}/*.a
%{_libdir}/*.la
%{_includedir}/*.h
%{_libdir}/*.so

%files -n php-%{modname}
%defattr(-,root,root)
%doc README.%{modname}
%doc contrib/php4/USAGE
%doc contrib/php4/README
%doc contrib/php4/INSTALL
%doc contrib/php4/examples/rrd_update.php
%doc contrib/php4/examples/rrd_graph.php
%doc contrib/php4/examples/rrd_create.php
%doc contrib/php4/examples/rrd_fetch.php
%doc contrib/php4/examples/rrd_last.php
%config(noreplace) %{_sysconfdir}/php/%{inifile}
%{phpdir}/extensions/%{soname}

%changelog
* Thu Jan 08 2004 Pascal Terjan <pterjan@mandrake.org> 1.0.46-1mdk
- 1.0.46
- update patch 0 and 2
- drop patch 1 (now handled by configure options)
- enforce automake-1.7
- install perl stuff into vendor_perl

* Sat Nov 08 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 1.0.45-3mdk
- built for php 4.3.4
- where's %%{__find} ?

* Thu Sep 18 2003 Gwenole Beauchesne <gbeauchesne@mandrakesoft.com> 1.0.45-2mdk
- remove implicit requires

* Mon Aug 25 2003 Ben Reser <ben@reser.org> 1.0.45-1mdk
- 1.0.45
- Fix automake build requires
- Fix systemlibs patch so the perl bindings work.
- chrpath -d to get rid of the nasty rpath in the binaries,
  I spent hours trying to get the build not put it in, it
  happens during the install phase, if someone can really fix
  this it would be nice.
- Macroize
- Try to fix the nasty permissions mess...
- Change how the .in/.am files are removed so you can short-circuit
- Don't ship the ntmake.pl file (it's the build script for Windows NT)

* Thu Aug 14 2003 Per Øyvind Karlsen <peroyvind@linux-mandrake.com> 1.0.42-5mdk
- use %%mklibname

* Thu Aug 14 2003 Per Øyvind Karlsen <peroyvind@linux-mandrake.com> 1.0.42-4mdk
- rebuild for new perl
- use %%makeinstall_std macro

* Mon Jul 21 2003 David BAUDENS <baudens@mandrakesoft.com> 1.0.42-3mdk
- Rebuild to fix bad signature

* Wed Jul 09 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 1.0.42-2mdk
- make it require php v4.3.2
- updated P1 and spec file magic

* Wed Jun 04 2003 Lenny Cartier <lenny@mandrakesoft.com> 1.0.42-1mdk
- 1.0.42

* Wed Apr 02 2003 Lenny Cartier <lenny@mandrakesoft.com> 1.0.41-1mdk
- from Oden Eriksson <oden.eriksson@kvikkjokk.net> :
	- 1.0.41
	- require php only for the php-rrdtool package
	- fix versioning on the php-rrdtool package

* Wed Jan 15 2003 Oden Eriksson <oden.eriksson@kvikkjokk.net> 1.0.40-2mdk
- follow the new PHP spec file design (sorta)
- added P2
- misc spec file fixes

* Tue Jan 14 2003 Lenny Cartier <lenny@mandrakesoft.com> 1.0.40-1mdk
- 1.0.40
- remove patch2 now merged upstream

* Sun Nov 24 2002 Oden Eriksson <oden.eriksson@kvikkjokk.net> 1.0.39-2mdk
- added the php-rrd sub package and its P2

* Mon Nov 04 2002 Lenny Cartier <lenny@mandrakesoft.com> 1.0.39-1mdk
- 1.0.39

* Mon Aug  5 2002 Pixel <pixel@mandrakesoft.com> 1.0.38-3mdk
- rebuild for perl thread-multi

* Thu Jul 11 2002 Pixel <pixel@mandrakesoft.com> 1.0.38-2mdk
- rebuild for perl 5.8.0

* Fri Jun 07 2002 Lenny Cartier <lenny@mandrakesoft.com> 1.0.38-1mdk
- 1.0.38
- regenerate zlib/png patch for 1.0.38

* Thu Mar 21 2002 Lenny Cartier <lenny@mandrakesoft.com> 1.0.35-1mdk
- regenerate zlib/png system patch
- 1.0.35

* Fri Feb  8 2002 Frederic Lepied <flepied@mandrakesoft.com> 1.0.33-9mdk
- use system zlib and png lib

* Mon Jan 14 2002 Lenny Cartier <lenny@mandrakesoft.com> 1.0.33-8mdk
- provides obsoleted

* Mon Jul 30 2001 Lenny Cartier <lenny@mandrakesoft.com> 1.0.33-7mdk
- obsoletes rrdtool-devel

* Sun Jul 29 2001 Lenny Cartier <lenny@mandrakesoft.com> 1.0.33-6mdk
- split
- do not provide duplicate doc files

* Mon Jul 23 2001 Gwenole Beauchesne <gbeauchesne@mandrakesoft.com> 1.0.33-5mdk
- Fix build on ia64 (use %%configure, %%make)
- Don't use -ffast-math since we need IEEE behavior for FP arithmetics

* Thu Jul 12 2001 Stefan van der Eijk <stefan@eijk.nu> 1.0.33-4mdk
- BuildRequires:	perl-devel
- Removed BuildRequires:	zlib-devel

* Wed Apr 25 2001 Vincent Saugey <vince@mandrakesoft.com> 1.0.33-3mdk
- Change filelist (go pixel now you can change perl version as often you want)
- Fix some buildrequire and require for devel package

* Mon Apr  9 2001 Vincent Saugey <vince@mandrakesoft.com> 1.0.33-2mdk
- Remove i386 hardcode link for other arch build (thanks to Stefan van der Eijk <stefan@eijk.nu>)

* Mon Mar  5 2001 Vincent Saugey <vince@mandrakesoft.com> 1.0.33-1mdk
- Up to 1.0.33

* Fri Jan 26 2001 Lenny Cartier <lenny@mandrakesoft.com> 1.0.28-2mdk
- rebuild

* Fri Oct 06 2000 Florin Grad <florin@mandrakesoft.com> 1.0.28-1mdk
- mandrake adaptions

* Thu Apr 06 2000 Henri Gomez <hgomez@slib.fr>
- 1.0.16
- added missing rrd_format.h back into the distro .. grrrr
- new patche for RPM package to correct problems in building with
  shared libs for tcl/perl-shared <hgomez@slib.fr>

* Thu Apr 06 2000 Henri Gomez <hgomez@slib.fr>
- 1.0.15
- alloc error in RPN code of rrd_graph found ... and fixed
- Made tcl install optional as suggested by E. Lagache
- TCL Build Fix
- configure.in had wrong error message for nan==nan

* Wed Apr 05 2000 Henri Gomez <hgomez@slib.fr>
- 1.0.14
- added function prototypes to rrd_graph and rrd_restore
- made perl build more robust
- clickgraph contrib ... interactive data explorer ...
- fixes for TCL module compilation
- rrdgraph dead code ...
- fetch pic flag from libtool ..
- TCL bindings for rrdtool
- rrd_update should not change its argv string ... this can be
  fatal for external processes calling it ..
- made sure the CDEF evaluator does not ever try to compare against NaN
  added new CDEF operators MIN,MAX,LIMIT
- examples/pipe-demo.pl.in was still using %f instead of %lf
- added some check to free calls in rrdcgi so that we don't free anything
  which is already NULL ... freebsd hates this ...
- Added RRD:GETENV to Pass 1 of rrdcgi
- added casting to floating point routines where needed. (get 64bit working)
- added --alt-autoscale-max to autoscale only on the max value.
- contributed php3 bindings contrib/php3
- Removed PL_na reference from RRD.xs ... it does now work with Perl 5.6
- added many more warning switches to rrdtool
- out of bounds error in OP_PREV processing (rrd_graph.c) fixed
- hpux uses RRDs.sl instead of RRDs.so ... I have changed the Makefile to handle this.

* Tue Feb 15 2000 Henri Gomez <gomez@slib.fr>
- 1.0.13
- restored rrd_tool.h ... got zeroed during the last distro process ...

* Mon Feb 14 2000 Henri Gomez <gomez@slib.fr>
- 1.0.12
- contributed rrdfetchnames for getting names of an rrd
- more documentation on COUNTER/ABSOLUTE/GAUGE ....
- added try time to build process
- NT thinks 0 > NaN || 0 < NaN == ture ... fied rrd_update.c accordingly
- added FPMASK and SIG8 fixes to rrd_cgi ... will prevent it from sig FPE crashes
  on FreeBSD and others ...
- Improved \g by giving it the ability to squash empty %s
  return values

* Mon Feb  7 2000 Henri Gomez <gomez@slib.fr>
- 1.0.11
- added formating marker '\g' to rrd_graph to remove
  the spacing between two items printed into the graph
- make sure rrd_graph --lazy does not get confused by broken
  images.
- applie range check to values supplied to update and not
  to pdp values
- fixed rpn parser to allow variable names like nantuket
- another example for rrdcgi manpage
- contrib script to kill spikes from rrd dump
- fixed 'fetch' example in the RRDs manpage
- contributed add_ds a perl script for adding new ds es to existing rrds
- contributed rrdlastds script ... pulling current values from an rrd
- --goodfor and --refresh did not work for rrdcgi as the arguments never got
  passed on. Introduced <RRD::GOODFOR x> command in rrdcgi language to
  fix this problem
- using - as input did not work for rrd_restore ...
- pass name of the c compile to the perl build along with the CFLAGS
- Removed special provisions for HPUX from rrd_format ... this might actually help HPUX to get
  the NaN problems fixed
- in rrd_graph the data consolidation routine was initializing the with 0 instead of DNAN
  this led to rather log MIN values




* Fri Jan  7 2000 Henri Gomez <gomez@slib.fr>
- 1.0.10-0
- The Update Bug solved ... rrdtool was in violation of the ANSI
  C standard (7.9.5.3) by issuing a fwrite immediately after an
  fread without fseek inbetween
- added <RRD::TIME::NOW function to rrdcgi
- added documentation for <RRD::SETENV to rrdcgi.pod
- better explanation of lower and upper limit for rrdgraph
- fixed PRINT commands in example scripts
- to test -fPIC actually RUN a program ..


* Tue Dec 28 1999 Henri Gomez <gomez@slib.fr>
- 1.0.9-0
- use -fPIC when compiling and if the compiuler does not mind ... some platforms
  have issues with the RRDs package otherwhise ...
- improved format check in rrd_graph
- rrdproc tool ... run linux interface stats straight from proc into rrdtool


* Tue Nov 30 1999 Henri Gomez <gomez@slib.fr>
- 1.0.8-2
- fixed user access to documentations (Mark@Knutsen@nasd.com)
  
* Thu Nov 25 1999 Henri Gomez <gomez@slib.fr>
- 1.0.8

* Wed Nov 10 1999 Henri Gomez <gomez@slib.fr>
- 1.0.7-3
- use now shared lib png and zlib
- allways two different packages for RH5.x and RH6.x
  since we got Perl loader error (undefined symbol: Perl_markstack_ptr)

* Wed Oct 27 1999 Henri Gomez <gomez@slib.fr>
- 1.0.7-2
- latest fixes from beta 19991024

* Mon Aug 30 1999 Henri Gomez <gomez@slib.fr>
- 1.0.7-1
- 1999/08/27 -- bdowling@noc.faxnet.net
  some strncpy were lacking the x[LAST]='\0'; safeguard ...
- 1999/08/25 -- Tobi
  Samples were shifted one interval into the future by rrdgraph ...
  check minmax.pl in the examples directory ...
- 1999/08/25 -- Tobi
  Updated rrdtools manpage to point to all the newer functions in the
  package which have been left out before ...
- 1999/08/25 -- Tobi
  RRDs.xs: changed newRV_inc to newRV_noinc in a few places (graph and
  fetch) otherwhise I'm afraid we got the refference count wrong and perl
  was leaking memmory like a sive ...
- 1999/08/24 -- Tobi
  added -lm to perl Makefile.PL just to be sure it is there when
  perl builds its shared module ...
+ 1999/08/23 -- Tobi
  added test for "-q float=rndsngl" todo proper IEEE math on AIX 4.2.0 with
  IBM xlC
+ 1999/08/23 -- Tobi
  added new stripes example ...
- 1999/08/23 -- Tobi
  fixed spacing adjustment with '\s' instead of 1.5 it now adds 0.5
  line-hights ...
- 1999/08/20 -- Tobi + Jesper Skriver <jesper@skriver.dk>
  found and fixed buffer overflow in legend processing when dealing with
  large numbers
+ 1999/08/20 -- Philippe.Simonet@swisscom.com
  range-check option for rrdrestore
- 1999/08/19 -- Tobi
  replaced micro by u in SI prefix array
- 1999/08/19 -- Tobi
  better floating point veryfication in IEEE test ... missed SIGFPE
  condition in freeBSD.
- 1999/08/17 -- Tobi reacting to a bug report from W. James Showalter, Jr.
  made time parser work as expected with dates of the form august 20 1999 as
  well as dates of the form 8/17/1999 and 17.8.1999
- 1999/08/17 -- Blair Zajac <bzajac@geostaff.com>
  propagate CFLAGS from configure to PERL module compilation
- 1999/08/17 -- Ragnar Kjørstad <mrtg@ragnark.vestdata.no>
  fixed perl path in log2rrd contrib script
- 1999/08/16 -- Philippe.Simonet@swisscom.com
  DINF and friends for NT

* Mon Aug 30 1999 Henri Gomez <gomez@slib.fr>
- 1.0.6-3
- move perl modules in installdir.
- move log2rrd to /usr/bin and added logall2rrd.

* Fri Aug 26 1999 Henri Gomez <gomez@slib.fr>
- 1.0.6-2
- applied latest 1.0.6 patches
- added more examples

* Wed Aug 25 1999 Henri Gomez <gomez@slib.fr>
- 1.0.6-1 
- Corrections in RPM spec file (install prefix, strip, clean-up, ...)
- Use shared library compile
- Add a devel package with static library and headers
- RH5.2 and RH6.0 perl ld.so is different, so there will be for now 
  two set of rrdtool (5.2 for RH5.2 and 6.0 for RH6.0).

* Sat Aug 14 1999 Tobi
- Released 1.0.6
- Fixed install location of html pages ... they go to ../html now ...
- Fixed CDEF parser ... it should now be fine with a,-1,*
- Updated rrdgraph manpage to be in line with the changes I made to alexs INF patch when integrating it ... sorry alex

* Fri Aug 13 1999 Tobi
- Released 1.0.5
- Tested portability of 1.0.5 release on Solaris, Linux and FreeBSD
- changed IEEE tests ... now they tell you what fails and they are less picky
  
* Thu Aug 12 1999 Alex + Tobi
- added INF and NEGINF operator to CDEF rpn functions. This pushes an positive or negative infinite number onto the stack respectively ... when graphing, they get replaced by a value equivalent to the upper or lower boundery of the graphing area ...

* Tue Aug 10 1999 Tobi
- Integrated Blairs autoconf ... added dist and install support

* Mon Aug 09 1999 Blair
- Added automake/libtool support ... with --enable-shared you can now get a shared library version of rrdtool ... 

* Fri Aug 06 1999 Tobi
- Released 1.0.4
- made rrdcgi parser more robust to invalid inputfiles.

* Wed Aug 04 1999 Tobi + Philippe
- in rrd_cgi I was freeing cgi arguments. Fixed ...
 
* Tue Aug 03 1999 Tobi
- added % operator to CDEF rpn functions ...  this should allow for some funky operations in connection with TIME
- added --enable-site-perl option to configure for people who want the RRD{s,p} perl modules installed in their site-perl directories
- do not try to compile perl modules if no perl is found

* Mon Aug 03 1999 Hermann Hueni <hueni@glue.ch>
- drop "rb" open mode for non win32 architectures

* Fri Jul 30 1999 Tobi
- Released 1.0.3
- Fixed default start time in rrd_create. 
- Start time of new rrds was set to 1970.01.01 causing VERY long update times for the initial update ... 

* Fri Jul 30 1999 Tobias Weingartner <weingart@cs.ualberta.ca>
- spell fixes for documentation

* Wed Jul 28 1999 Tobi
- Released 1.0.2
- Added configure checks for reallocs ability to deal with NULL pointers this helps compiling on SunOS
- Added check for memmove availablility. Replace with bcopy if necessary.
- Added better IEEE tests ...
- Added Dynamic stack allocation to RPN in CDEF
- fixed about 1000 memmory leaks in rrdcg. Wonder it was working before ...

* Tue Jul 27 1999 Tobi & Tobias Weingartner <weingart@cs.ualberta.ca>
- Added DUP, POP and EXC operator for CDEF.

* Tue Jul 27 1999 Sasha Mikheev <sasha@aldan.netvision.net.il>
- alternate grid and scaling functions for rrdgraph. Use --alt-y-grid and --alt-autoscale to activate.

* Mon Jul 26 1999 Tamas Kovacshazy <khazy@mit.bme.hu>
- improved vc++ project files for rrdtool

* Mon Jul 26 1999 Tobi
- added ranlib to cgi png z and gd library ...

* Fri Jul 23 1999 Tobi
- released 1.0.1
- plugged memory leek in parsetime.c
- fixed serious error in data_reduce function. This was causing the graph to intermittently disappear. It was also displaying inaccurate values for spiky data, if this data had to be reduced due to the width of the image as compared to the resolution of the RRA data.  (does this fix the errors seen by cricket users ????)

* Thu Jul 22 1999 Seth Lepzelter <slepzelt@cs.oberlin.edu>
- DEC needs -mieee to do proper IEEE math ... added configure test

* Thu Jul 22 1999 Philippe.Simonet@swisscom.com
- vc++ project files for rrdtool

* Mon Jul 19 1999 Alex van den Bogaerdt <alex@ergens.op.Het.Net>
- rrd file icon contributed

* Mon Jul 19 1999 Tobi
- added strcasecmp function into parsetime as this is not available on all systems.

* Thu Jul 15 1999 Tobi
- Released first 'stable' version of RRDtool after almost 18 Month of 'development'