diff options
author | pav <pav@FreeBSD.org> | 2009-07-20 19:29:03 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2009-07-20 19:29:03 +0800 |
commit | 12a80f7bd93791dd951aab5994619b2c4236919e (patch) | |
tree | 2bb0fb870fd4a470124646c0dbadc2ec5fdadb70 /audio | |
parent | d26e71b309578b55c349157769a564a07c4fc068 (diff) | |
download | freebsd-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.cpp | 11 |
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)) { |