aboutsummaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorpav <pav@FreeBSD.org>2009-07-20 19:29:03 +0800
committerpav <pav@FreeBSD.org>2009-07-20 19:29:03 +0800
commit12a80f7bd93791dd951aab5994619b2c4236919e (patch)
tree2bb0fb870fd4a470124646c0dbadc2ec5fdadb70 /audio
parentd26e71b309578b55c349157769a564a07c4fc068 (diff)
downloadfreebsd-ports-gnome-12a80f7bd93791dd951aab5994619b2c4236919e.tar.gz
freebsd-ports-gnome-12a80f7bd93791dd951aab5994619b2c4236919e.tar.zst
freebsd-ports-gnome-12a80f7bd93791dd951aab5994619b2c4236919e.zip
- Fix build on 64-bit platforms
Submitted by: Timothy Beyer <beyert@cs.ucr.edu> (maintainer)
Diffstat (limited to 'audio')
-rw-r--r--audio/xmms-timidity/files/patch-xmms-timidity.cpp11
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/xmms-timidity/files/patch-xmms-timidity.cpp b/audio/xmms-timidity/files/patch-xmms-timidity.cpp
new file mode 100644
index 000000000000..0aaf2751fe0a
--- /dev/null
+++ b/audio/xmms-timidity/files/patch-xmms-timidity.cpp
@@ -0,0 +1,11 @@
+--- xmms-timidity.cpp.orig 2005-07-21 02:44:56.000000000 -0700
++++ xmms-timidity.cpp 2009-07-19 22:30:38.000000000 -0700
+@@ -347,7 +347,7 @@
+
+ void *infoThread(void *pData)
+ {
+- int pipeTimidity = (int)pData;
++ long pipeTimidity = (long)pData;
+ char cLine[256];
+ signed int iBytes = 1;
+ while ((iBytes > 0) && (::bPlaying)) {