[med-svn] r21538 - in trunk/packages/amide/trunk/debian: . patches

Gert Wollny gert-guest at moszumanska.debian.org
Mon Mar 21 10:26:39 UTC 2016


Author: gert-guest
Date: 2016-03-21 10:26:38 +0000 (Mon, 21 Mar 2016)
New Revision: 21538

Added:
   trunk/packages/amide/trunk/debian/patches/libc_2.23.patch
Modified:
   trunk/packages/amide/trunk/debian/changelog
   trunk/packages/amide/trunk/debian/patches/series
Log:
Add patch to compile against libc-2.23

Modified: trunk/packages/amide/trunk/debian/changelog
===================================================================
--- trunk/packages/amide/trunk/debian/changelog	2016-03-20 11:49:21 UTC (rev 21537)
+++ trunk/packages/amide/trunk/debian/changelog	2016-03-21 10:26:38 UTC (rev 21538)
@@ -1,3 +1,9 @@
+amide (1.0.5-6) UNRELEASED; urgency=medium
+
+  * Add patch libc_2.23.patch Closes: #818818
+
+ -- Gert Wollny <gw.fossdev at gmail.com>  Mon, 21 Mar 2016 10:21:19 +0000
+
 amide (1.0.5-5) unstable; urgency=medium
 
   * d/patches/gsl_2x.patch: Fix compilation against GSL >= 2.0

Added: trunk/packages/amide/trunk/debian/patches/libc_2.23.patch
===================================================================
--- trunk/packages/amide/trunk/debian/patches/libc_2.23.patch	                        (rev 0)
+++ trunk/packages/amide/trunk/debian/patches/libc_2.23.patch	2016-03-21 10:26:38 UTC (rev 21538)
@@ -0,0 +1,17 @@
+Description: Correct if statement for libc-2.23 
+Author: Gert Wollny <gw.fossdev at gmail.com>
+Last-Update: 2016-03-21
+Bug: https://bugs.debian.org/818818
+Forwarded: yes
+
+--- a/src/alignment_mutual_information.c
++++ b/src/alignment_mutual_information.c
+@@ -209,7 +209,7 @@
+       //g_print("\t\%i", mutual_information_array[i][j] );  // for point-wise counts
+       // g_print("\t\%4.3f", incremental_mi );               // for point-wise probability
+       
+-      if isinf(incremental_mi) {
++      if (isinf(incremental_mi)) {
+         //count it (because lots and lots of zeroes mean bad registration) and go to the next loop
+         mi_nan_count++;
+         // this is most often a problem when the incemental MI is infinity, due to divide by zero

Modified: trunk/packages/amide/trunk/debian/patches/series
===================================================================
--- trunk/packages/amide/trunk/debian/patches/series	2016-03-20 11:49:21 UTC (rev 21537)
+++ trunk/packages/amide/trunk/debian/patches/series	2016-03-21 10:26:38 UTC (rev 21538)
@@ -4,3 +4,4 @@
 libav10.patch
 ffmpeg_2.9.patch
 gsl_2x.patch
+libc_2.23.patch




More information about the debian-med-commit mailing list