This commit is contained in:
parent
e82ec0ae60
commit
afc85ddd20
@ -1,38 +0,0 @@
|
||||
--- configure.ac
|
||||
+++ configure.ac
|
||||
@@ -77,8 +77,8 @@ AH_TOP([
|
||||
AH_BOTTOM([
|
||||
/* make sure that we pickup the correct stuff from all headers */
|
||||
#ifdef HAVE_FEATURES_H
|
||||
-#undef _XOPEN_SOURCE /* keep unmodified */
|
||||
-#undef _BSD_SOURCE /* keep unmodified */
|
||||
+/* keep unmodified */ #undef _XOPEN_SOURCE
|
||||
+/* keep unmodified */ #undef _BSD_SOURCE
|
||||
#define _XOPEN_SOURCE 600
|
||||
#define _BSD_SOURCE 1
|
||||
# include <features.h>
|
||||
@@ -247,14 +247,14 @@ char *strchr (), *strrchr ();
|
||||
#if (! defined(HAVE_ISINF) && defined(HAVE_FPCLASS))
|
||||
# define HAVE_ISINF 1
|
||||
# ifdef isinf
|
||||
-# undef isinf /* confuse autoconf */
|
||||
+/* confuse autoconf */ # undef isinf
|
||||
# endif
|
||||
# define isinf(a) (fpclass(a) == FP_NINF || fpclass(a) == FP_PINF)
|
||||
#endif
|
||||
|
||||
/* solaris 10 it defines isnan such that only forte can compile it ... bad bad */
|
||||
#if (defined(HAVE_ISNAN) && defined(isnan) && defined(HAVE_FPCLASS))
|
||||
-# undef isnan /* confuse autoconf to NOT remove this */
|
||||
+/* confuse autoconf to NOT remove this */ # undef isnan
|
||||
# define isnan(a) (fpclass(a) == FP_SNAN || fpclass(a) == FP_QNAN)
|
||||
#endif
|
||||
|
||||
@@ -358,6 +358,7 @@ dnl Check for the compiler and static/sh
|
||||
AC_PROG_CC
|
||||
AC_PROG_CPP
|
||||
AC_PROG_LIBTOOL
|
||||
+m4_ifdef([LT_OUTPUT],[LT_OUTPUT])
|
||||
|
||||
dnl Try to detect/use GNU features
|
||||
CFLAGS="$CFLAGS -D_GNU_SOURCE"
|
@ -1,3 +0,0 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:dddd7b2c70fa19ff5b8de969dd0e9274071bac29903e5348c74bd23fa72953c4
|
||||
size 795533
|
3
rrdtool-1.3.4.tar.bz2
Normal file
3
rrdtool-1.3.4.tar.bz2
Normal file
@ -0,0 +1,3 @@
|
||||
version https://git-lfs.github.com/spec/v1
|
||||
oid sha256:31aa24a0f758be89e9a1e355b3bbac517282f89f193101b12f63b02ff122e936
|
||||
size 773239
|
@ -1,3 +1,21 @@
|
||||
-------------------------------------------------------------------
|
||||
Mon Oct 6 14:17:04 CEST 2008 - anicka@suse.cz
|
||||
|
||||
- update to 1.3.4
|
||||
* detect short/truncated files on open (rrdtool used to crash
|
||||
later on some platforms)
|
||||
* stop rrd_resize from altering the original file (mmap side
|
||||
effect)
|
||||
* fix VDEF and SHIFT use. Now it returns correct data and does
|
||||
not crash anymore.
|
||||
* fix rrd_xport when used on datasources with different
|
||||
resolutions. This has been broken from day 1 of this tools
|
||||
exsitance.
|
||||
* fixed default prefix for ruby install
|
||||
* added rpath for perl bindings on bsd
|
||||
* do not [fm]advise past the end of the file since this
|
||||
causes crashes on sparc.
|
||||
|
||||
-------------------------------------------------------------------
|
||||
Wed Sep 10 18:50:23 CEST 2008 - anicka@suse.cz
|
||||
|
||||
|
26
rrdtool.spec
26
rrdtool.spec
@ -1,5 +1,5 @@
|
||||
#
|
||||
# spec file for package rrdtool (Version 1.3.2)
|
||||
# spec file for package rrdtool (Version 1.3.4)
|
||||
#
|
||||
# Copyright (c) 2008 SUSE LINUX Products GmbH, Nuernberg, Germany.
|
||||
#
|
||||
@ -23,11 +23,10 @@ License: GPL v2 or later
|
||||
Group: Productivity/Scientific/Math
|
||||
AutoReqProv: on
|
||||
Requires: perl = %{perl_version}
|
||||
Version: 1.3.2
|
||||
Version: 1.3.4
|
||||
Release: 1
|
||||
Source: %{name}-%{version}.tar.bz2
|
||||
Source1: cgilib-0.5.tar.bz2
|
||||
Patch: %{name}-%{version}.diff
|
||||
Url: http://oss.oetiker.ch/rrdtool/
|
||||
BuildRoot: %{_tmppath}/%{name}-%{version}-build
|
||||
Summary: A tool for data logging and analysis
|
||||
@ -47,7 +46,6 @@ Authors:
|
||||
|
||||
%prep
|
||||
%setup -q -a1
|
||||
%patch
|
||||
|
||||
%build
|
||||
# first prepare cgilib
|
||||
@ -160,11 +158,8 @@ Authors:
|
||||
%defattr(-, root, root)
|
||||
/usr/include/*
|
||||
%{_libdir}/librrd_th.so
|
||||
#%{_libdir}/librrd.a
|
||||
#%{_libdir}/librrd.la
|
||||
%{_libdir}/librrd.so
|
||||
#%{_libdir}/librrd_th.a
|
||||
#%{_libdir}/librrd_th.la
|
||||
%{_libdir}/pkgconfig/librrd.pc
|
||||
|
||||
%package -n python-rrdtool
|
||||
License: GPL v2 or later
|
||||
@ -192,6 +187,21 @@ Authors:
|
||||
%{py_sitedir}/*
|
||||
|
||||
%changelog
|
||||
* Mon Oct 06 2008 anicka@suse.cz
|
||||
- update to 1.3.4
|
||||
* detect short/truncated files on open (rrdtool used to crash
|
||||
later on some platforms)
|
||||
* stop rrd_resize from altering the original file (mmap side
|
||||
effect)
|
||||
* fix VDEF and SHIFT use. Now it returns correct data and does
|
||||
not crash anymore.
|
||||
* fix rrd_xport when used on datasources with different
|
||||
resolutions. This has been broken from day 1 of this tools
|
||||
exsitance.
|
||||
* fixed default prefix for ruby install
|
||||
* added rpath for perl bindings on bsd
|
||||
* do not [fm]advise past the end of the file since this
|
||||
causes crashes on sparc.
|
||||
* Wed Sep 10 2008 anicka@suse.cz
|
||||
- update to 1.3.2
|
||||
* fix for data corruption bug:
|
||||
|
Loading…
Reference in New Issue
Block a user