diff options
author | Jan Brinkmann <luckyduck@gentoo.org> | 2005-03-21 20:01:40 +0000 |
---|---|---|
committer | Jan Brinkmann <luckyduck@gentoo.org> | 2005-03-21 20:01:40 +0000 |
commit | e268e327efa0d958e6cefec93f18c3eba2a8eb4f (patch) | |
tree | d64866fa817bddbc1c2dd19a89204caf2b4b9099 /media-sound/ripperx/files | |
parent | Stable on ppc (diff) | |
download | historical-e268e327efa0d958e6cefec93f18c3eba2a8eb4f.tar.gz historical-e268e327efa0d958e6cefec93f18c3eba2a8eb4f.tar.bz2 historical-e268e327efa0d958e6cefec93f18c3eba2a8eb4f.zip |
added gcc3.4 patch for 2.3, fixes #74766
Package-Manager: portage-2.0.51.19
Diffstat (limited to 'media-sound/ripperx/files')
-rw-r--r-- | media-sound/ripperx/files/ripperx-2.3-gcc34.patch | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/media-sound/ripperx/files/ripperx-2.3-gcc34.patch b/media-sound/ripperx/files/ripperx-2.3-gcc34.patch new file mode 100644 index 000000000000..c64e26cf8e2f --- /dev/null +++ b/media-sound/ripperx/files/ripperx-2.3-gcc34.patch @@ -0,0 +1,30 @@ +diff -urpN ../ripperX-2.3.orig/src/cddbp.c src/cddbp.c +--- ../ripperX-2.3.orig/src/cddbp.c 2005-03-21 20:44:05.709026752 +0100 ++++ src/cddbp.c 2005-03-21 20:53:55.961294768 +0100 +@@ -62,7 +62,7 @@ int cddbp_handshake( FILE *socket, const + + + int cddbp_query( FILE *socket, const char *disk_id, int tracknum, +- long int offset[ tracknum ], int duration, int *matches, ++ long int offset[ MAX_NUM_TRACK ], int duration, int *matches, + char ***category_buffer, char ***title_buffer, + char ***id_buffer ) + { +@@ -244,7 +244,7 @@ void cddbp_signoff( FILE *socket ) + + + int http_query( const char *server, int port, const char *URL, +- const char *cd_id, int tracknum, long int offset[ tracknum ], ++ const char *cd_id, int tracknum, long int offset[ MAX_NUM_TRACK ], + int duration, int *matches, + char ***category_buffer, char ***title_buffer, + char ***id_buffer, const char *client, const char *version ) +@@ -354,7 +354,7 @@ int http_query( const char *server, int + } + + int http_query_proxy( const char *server, int port, const char *proxy_server, int proxy_port, const char *URL, +- const char *cd_id, int tracknum, long int offset[ tracknum ], ++ const char *cd_id, int tracknum, long int offset[ MAX_NUM_TRACK ], + int duration, int *matches, + char ***category_buffer, char ***title_buffer, + char ***id_buffer, const char *client, const char *version ) |