Author: smr
Date: 2012-03-15 02:25:31 +0000 (Thu, 15 Mar 2012)
New Revision: 9997

Added:
   trunk/packages/insighttoolkit/branches/3.20.1/debian/patches/gzgetc.patch
Modified:
   trunk/packages/insighttoolkit/branches/3.20.1/debian/changelog
   trunk/packages/insighttoolkit/branches/3.20.1/debian/patches/series
Log:
Fix build failure caused by ::gzgetc().

Modified: trunk/packages/insighttoolkit/branches/3.20.1/debian/changelog
===================================================================
--- trunk/packages/insighttoolkit/branches/3.20.1/debian/changelog      
2012-03-14 20:35:51 UTC (rev 9996)
+++ trunk/packages/insighttoolkit/branches/3.20.1/debian/changelog      
2012-03-15 02:25:31 UTC (rev 9997)
@@ -1,3 +1,10 @@
+insighttoolkit (3.20.1-5) unstable; urgency=low
+
+  * patches/gzgetc.patch: New.  Former function ::gzgetc() is now a macro,
+    so call as "gzgetc()".  Fixes build failure (Closes: #663570).
+
+ -- Steve M. Robbins <[email protected]>  Wed, 14 Mar 2012 21:25:01 -0500
+
 insighttoolkit (3.20.1-4) unstable; urgency=low
 
   * Revert to using ITK copy of VXL.  Closes: #657943.  The change to

Added: trunk/packages/insighttoolkit/branches/3.20.1/debian/patches/gzgetc.patch
===================================================================
--- trunk/packages/insighttoolkit/branches/3.20.1/debian/patches/gzgetc.patch   
                        (rev 0)
+++ trunk/packages/insighttoolkit/branches/3.20.1/debian/patches/gzgetc.patch   
2012-03-15 02:25:31 UTC (rev 9997)
@@ -0,0 +1,11 @@
+--- Code/Review/itkVoxBoCUBImageIO.cxx~        2011-10-25 11:37:23.000000000 
-0500
++++ Code/Review/itkVoxBoCUBImageIO.cxx 2012-03-14 21:20:14.816394111 -0500
+@@ -118,7 +118,7 @@
+ 
+   unsigned char ReadByte()
+     {
+-    int byte = ::gzgetc(m_GzFile);
++    int byte = gzgetc(m_GzFile);
+     if(byte < 0)
+       {
+       itksys_ios::ostringstream oss;

Modified: trunk/packages/insighttoolkit/branches/3.20.1/debian/patches/series
===================================================================
--- trunk/packages/insighttoolkit/branches/3.20.1/debian/patches/series 
2012-03-14 20:35:51 UTC (rev 9996)
+++ trunk/packages/insighttoolkit/branches/3.20.1/debian/patches/series 
2012-03-15 02:25:31 UTC (rev 9997)
@@ -8,3 +8,4 @@
 add-registration-optimizers.patch
 wrap-iifilter-split.patch
 itkvtkglue-vtk58.patch
+gzgetc.patch


_______________________________________________
debian-med-commit mailing list
[email protected]
http://lists.alioth.debian.org/cgi-bin/mailman/listinfo/debian-med-commit

Reply via email to