[csw-devel] SF.net SVN: gar:[10320] csw/mgar/pkg/rrdtool/branches/x11-reloaded

dmichelsen at users.sourceforge.net dmichelsen at users.sourceforge.net
Fri Jun 25 16:05:07 CEST 2010


Revision: 10320
          http://gar.svn.sourceforge.net/gar/?rev=10320&view=rev
Author:   dmichelsen
Date:     2010-06-25 14:05:07 +0000 (Fri, 25 Jun 2010)

Log Message:
-----------
rrdtool/x11-reloaded: Add critical isinf-fix for bug #4380

Modified Paths:
--------------
    csw/mgar/pkg/rrdtool/branches/x11-reloaded/Makefile
    csw/mgar/pkg/rrdtool/branches/x11-reloaded/checksums

Added Paths:
-----------
    csw/mgar/pkg/rrdtool/branches/x11-reloaded/files/0001-Fix-isinf.patch

Modified: csw/mgar/pkg/rrdtool/branches/x11-reloaded/Makefile
===================================================================
--- csw/mgar/pkg/rrdtool/branches/x11-reloaded/Makefile	2010-06-25 09:57:26 UTC (rev 10319)
+++ csw/mgar/pkg/rrdtool/branches/x11-reloaded/Makefile	2010-06-25 14:05:07 UTC (rev 10320)
@@ -19,6 +19,8 @@
 PATCHFILES += patch-bindings-perl-piped-Makefile.PL
 PATCHFILES += patch-bindings-perl-shared-Makefile.PL
 
+PATCHFILES += 0001-Fix-isinf.patch
+
 # We define upstream file regex so we can be notifed of new upstream software release
 UFILES_REGEX = $(GARNAME)-(\d+(?:\.\d+)*).tar.gz
 

Modified: csw/mgar/pkg/rrdtool/branches/x11-reloaded/checksums
===================================================================
--- csw/mgar/pkg/rrdtool/branches/x11-reloaded/checksums	2010-06-25 09:57:26 UTC (rev 10319)
+++ csw/mgar/pkg/rrdtool/branches/x11-reloaded/checksums	2010-06-25 14:05:07 UTC (rev 10320)
@@ -1,3 +1,4 @@
+04c50cb4ab2c34aebf0413130776bfdd  0001-Fix-isinf.patch
 c6bc2f9c3d88e0488f0332a9d288dc39  patch-bindings-Makefile.in
 0d068a4648f3a52c79c00374fa0ef486  patch-bindings-perl-piped-Makefile.PL
 4fd31144a5e2799db7440d97430d3ab6  patch-bindings-perl-shared-Makefile.PL

Added: csw/mgar/pkg/rrdtool/branches/x11-reloaded/files/0001-Fix-isinf.patch
===================================================================
--- csw/mgar/pkg/rrdtool/branches/x11-reloaded/files/0001-Fix-isinf.patch	                        (rev 0)
+++ csw/mgar/pkg/rrdtool/branches/x11-reloaded/files/0001-Fix-isinf.patch	2010-06-25 14:05:07 UTC (rev 10320)
@@ -0,0 +1,26 @@
+From b8063983295ef5629a106b61c735a90edd842412 Mon Sep 17 00:00:00 2001
+From: Dagobert Michelsen <dam at opencsw.org>
+Date: Fri, 25 Jun 2010 16:00:27 +0200
+Subject: [PATCH] Fix isinf
+
+---
+ src/rrd_config_bottom.h |    3 ++-
+ 1 files changed, 2 insertions(+), 1 deletions(-)
+
+diff --git a/src/rrd_config_bottom.h b/src/rrd_config_bottom.h
+index a569197..0a05a40 100644
+--- a/src/rrd_config_bottom.h
++++ b/src/rrd_config_bottom.h
+@@ -175,7 +175,8 @@ char *strchr (), *strrchr ();
+ #  ifdef isinf
+ #  undef isinf
+ #  endif
+-#  define isinf(a) (!!(fpclass(a) & (FP_SNAN|FP_QNAN)))
++/*  define isinf(a) (!!(fpclass(a) & (FP_SNAN|FP_QNAN))) */
++#define isinf(a) (fpclass(a) == FP_NINF || fpclass(a) == FP_PINF)
+ 
+ #endif
+ 
+-- 
+1.7.1
+


This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.


More information about the devel mailing list