diff options
author | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-04 11:32:32 +0000 |
---|---|---|
committer | Pav Lucistnik <pav@FreeBSD.org> | 2003-12-04 11:32:32 +0000 |
commit | 1068be7e1aa63bf6cb74a20933ae1f6d63bded99 (patch) | |
tree | 81a56bb6073947a2854a32cfd4d18130659e059b /audio/prokyon3/files | |
parent | aac8b657f754b5ebcafc9c14965876abd9670b4d (diff) | |
download | ports-1068be7e1aa63bf6cb74a20933ae1f6d63bded99.tar.gz ports-1068be7e1aa63bf6cb74a20933ae1f6d63bded99.zip |
Notes
Diffstat (limited to 'audio/prokyon3/files')
-rw-r--r-- | audio/prokyon3/files/patch-src-getopt.h | 18 | ||||
-rw-r--r-- | audio/prokyon3/files/patch-src-tagger_mp3.cpp | 11 |
2 files changed, 29 insertions, 0 deletions
diff --git a/audio/prokyon3/files/patch-src-getopt.h b/audio/prokyon3/files/patch-src-getopt.h new file mode 100644 index 000000000000..ddeb91f4686c --- /dev/null +++ b/audio/prokyon3/files/patch-src-getopt.h @@ -0,0 +1,18 @@ +--- src/getopt.h.orig Sun Dec 8 19:29:14 2002 ++++ src/getopt.h Mon Nov 24 21:07:44 2003 +@@ -15,9 +15,6 @@ + along with this program; if not, write to the Free Software + Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ + +-#ifndef _GETOPT_H +-#define _GETOPT_H 1 +- + #ifdef __cplusplus + extern "C" { + #endif +@@ -125,5 +122,3 @@ + #ifdef __cplusplus + } + #endif +- +-#endif /* _GETOPT_H */ diff --git a/audio/prokyon3/files/patch-src-tagger_mp3.cpp b/audio/prokyon3/files/patch-src-tagger_mp3.cpp new file mode 100644 index 000000000000..ef28d341e037 --- /dev/null +++ b/audio/prokyon3/files/patch-src-tagger_mp3.cpp @@ -0,0 +1,11 @@ +--- src/tagger_mp3.cpp.orig Mon Feb 17 00:01:44 2003 ++++ src/tagger_mp3.cpp Mon Nov 24 21:00:58 2003 +@@ -448,7 +448,7 @@ + if(mp3->id3.comment[28] == '\0') { + mp3->id3.track[0] = mp3->id3.comment[29]; + } +- mp3->file.readBlock(&(char)mp3->id3.genre[0], 1); ++ mp3->file.readBlock((char*)&mp3->id3.genre[0], 1); + unpad(mp3->id3.title); + unpad(mp3->id3.artist); + unpad(mp3->id3.album); |