audio/milkytracker: Fixed with a patch.

Signed-off-by: Erik Hanson <erik@slackbuilds.org>
This commit is contained in:
Erik Hanson 2012-09-09 21:23:11 -05:00
parent 640a503a0d
commit 70c976a7c4
2 changed files with 32 additions and 0 deletions

View file

@ -0,0 +1,29 @@
--- milkytracker-0.90.85/src/compression/DecompressorGZIP.cpp 2009-04-17 22:34:16.000000000 +0200
+++ milkytracker-trunk/src/compression/DecompressorGZIP.cpp 2012-02-20 20:24:49.161937553 +0100
@@ -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;

View file

@ -73,6 +73,9 @@ find . \
# Apply 64bit_freebsd_fix.patch from homepage. (Closes: #626627)
patch -p1 < $CWD/64bit_freebsd_fix.patch
# http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=661906
patch -p1 < $CWD/fix-FBTS-with-new-zlib.patch
CFLAGS="$SLKCFLAGS" \
CXXFLAGS="$SLKCFLAGS" \
./configure \