tags 661906 + pending
thanks

Dear maintainer,

I've prepared an NMU for milkytracker (versioned as 0.90.85+dfsg-2.1) and
uploaded it to DELAYED/2. Please feel free to tell me if I
should delay it longer.

Regards.

-- 
 .''`.  Homepage: http://info.comodo.priv.at/ - OpenPGP key 0xBB3A68018649AA06
 : :' : Debian GNU/Linux user, admin, and developer  -  http://www.debian.org/
 `. `'  Member of VIBE!AT & SPI, fellow of the Free Software Foundation Europe
   `-   
diff -Nru milkytracker-0.90.85+dfsg/debian/changelog milkytracker-0.90.85+dfsg/debian/changelog
--- milkytracker-0.90.85+dfsg/debian/changelog	2011-05-23 12:04:06.000000000 +0200
+++ milkytracker-0.90.85+dfsg/debian/changelog	2012-03-18 14:19:20.000000000 +0100
@@ -1,3 +1,11 @@
+milkytracker (0.90.85+dfsg-2.1) unstable; urgency=low
+
+  * Non-maintainer upload.
+  * Fix "FTBFS": add patch ftbfs-gzip.patch from Arch Linux, found by Paul
+    Wise. (Closes: #661906)
+
+ -- gregor herrmann <[email protected]>  Sun, 18 Mar 2012 14:18:55 +0100
+
 milkytracker (0.90.85+dfsg-2) unstable; urgency=low
 
   * Apply 64bit_freebsd_fix.patch from homepage. (Closes: #626627)
diff -Nru milkytracker-0.90.85+dfsg/debian/patches/ftbfs-gzip.patch milkytracker-0.90.85+dfsg/debian/patches/ftbfs-gzip.patch
--- milkytracker-0.90.85+dfsg/debian/patches/ftbfs-gzip.patch	1970-01-01 01:00:00.000000000 +0100
+++ milkytracker-0.90.85+dfsg/debian/patches/ftbfs-gzip.patch	2012-03-18 14:13:30.000000000 +0100
@@ -0,0 +1,31 @@
+Bugs-Debian: http://bugs.debian.org/661906
+
+--- a/src/compression/DecompressorGZIP.cpp
++++ b/src/compression/DecompressorGZIP.cpp
+@@ -61,7 +61,7 @@
+ 	int len = 0;
+ 	pp_uint8 *buf;
+ 	
+-	if ((gz_input_file = (void **)gzopen (fileName.getStrBuffer(), "r")) == NULL)
++	if ((gz_input_file = (gzFile*)gzopen (fileName.getStrBuffer(), "r")) == NULL)
+ 		return false;
+ 	
+ 	if ((buf = new pp_uint8[0x10000]) == NULL)
+@@ -71,7 +71,7 @@
+ 	
+     while (true) 
+ 	{
+-        len = gzread (gz_input_file, buf, 0x10000);
++        len = gzread (*gz_input_file, buf, 0x10000);
+ 		
+         if (len < 0) 
+ 		{
+@@ -84,7 +84,7 @@
+ 		fOut.write(buf, 1, len);
+     }
+ 	
+-    if (gzclose (gz_input_file) != Z_OK)
++    if (gzclose (*gz_input_file) != Z_OK)
+ 	{
+ 	    delete[] buf;
+         return false;
diff -Nru milkytracker-0.90.85+dfsg/debian/patches/series milkytracker-0.90.85+dfsg/debian/patches/series
--- milkytracker-0.90.85+dfsg/debian/patches/series	2011-05-23 12:04:24.000000000 +0200
+++ milkytracker-0.90.85+dfsg/debian/patches/series	2012-03-18 14:10:28.000000000 +0100
@@ -1 +1,2 @@
 debian-changes-0.90.85+dfsg-2
+ftbfs-gzip.patch

Attachment: signature.asc
Description: Digital signature

Reply via email to