[SCM] kmplot packaging branch, kubuntu_xenial_archive, updated. ubuntu/4%15.12.3-0ubuntu2

Scarlett Clark sgclark-guest at moszumanska.debian.org
Fri Apr 15 13:41:25 UTC 2016


Gitweb-URL: http://git.debian.org/?p=pkg-kde/applications/kmplot.git;a=commitdiff;h=1e96374

The following commit has been merged in the kubuntu_xenial_archive branch:
commit 1e9637475a4ee7dd3c599799291e165b1a3c29a2
Author: Scarlett Clark <sgclark at kubuntu.org>
Date:   Fri Apr 15 06:39:29 2016 -0700

    Add files
---
 debian/patches/series                        |  1 +
 debian/patches/upstream_fix_isnan_libc6.diff | 43 ++++++++++++++++++++++++++++
 2 files changed, 44 insertions(+)

diff --git a/debian/patches/series b/debian/patches/series
new file mode 100644
index 0000000..0906d7f
--- /dev/null
+++ b/debian/patches/series
@@ -0,0 +1 @@
+upstream_fix_isnan_libc6.diff 
diff --git a/debian/patches/upstream_fix_isnan_libc6.diff b/debian/patches/upstream_fix_isnan_libc6.diff
new file mode 100644
index 0000000..383b55b
--- /dev/null
+++ b/debian/patches/upstream_fix_isnan_libc6.diff
@@ -0,0 +1,43 @@
+ 
+--- a/kmplot/view.cpp
++++ b/kmplot/view.cpp
+@@ -476,7 +476,7 @@
+ 	double x = pixel.x();
+ 	double y = pixel.y();
+ 	
+-	if ( isnan(x) )
++	if ( std::isnan(x) )
+ 	{
+ 		xclipflg = true;
+ 		x = pixelIfNaN.x();
+@@ -496,14 +496,14 @@
+ 	}
+ 	else
+ 	{
+-		if ( isinf(x) == -1 )
++		if ( std::isinf(x) == -1 )
+ 			x = 0;
+ 			
+-		else if ( isinf(x) == 1 )
++		else if ( std::isinf(x) == 1 )
+ 			x = m_clipRect.right();
+ 	}
+ 	
+-	if ( isnan(y) )
++	if ( std::isnan(y) )
+ 	{
+ 		yclipflg = true;
+ 		y = pixelIfNaN.y();
+@@ -523,10 +523,10 @@
+ 	}
+ 	else
+ 	{
+-		if ( isinf(y) == -1 )
++		if ( std::isinf(y) == -1 )
+ 			y = 0;
+ 		
+-		else if ( isinf(y) == 1 )
++		else if ( std::isinf(y) == 1 )
+ 			y = m_clipRect.bottom();
+ 	}
+ 
\ No newline at end of file

-- 
kmplot packaging



More information about the pkg-kde-commits mailing list