summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2009-07-20 11:29:03 +0000
committerPav Lucistnik <pav@FreeBSD.org>2009-07-20 11:29:03 +0000
commit315555d3575dc74822025db26db25a759163a2b6 (patch)
tree5d7cf51d4f058c87db741f36fa223311ea39f02a /audio
parentDrop maintainership. (diff)
- Fix build on 64-bit platforms
Submitted by: Timothy Beyer <beyert@cs.ucr.edu> (maintainer)
Notes
Notes: svn path=/head/; revision=238103
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)) {