diff options
author | netchild <netchild@FreeBSD.org> | 2009-01-13 15:24:05 +0800 |
---|---|---|
committer | netchild <netchild@FreeBSD.org> | 2009-01-13 15:24:05 +0800 |
commit | 86b5bdb393df4b6dac786438b0bd4cee034866c5 (patch) | |
tree | ad16452b52b045737ee257ddb93ad63a6b79401e /audio | |
parent | c61421595c2b77a3c18c8caeb78f29d8509e7687 (diff) | |
download | freebsd-ports-gnome-86b5bdb393df4b6dac786438b0bd4cee034866c5.tar.gz freebsd-ports-gnome-86b5bdb393df4b6dac786438b0bd4cee034866c5.tar.zst freebsd-ports-gnome-86b5bdb393df4b6dac786438b0bd4cee034866c5.zip |
Fix build after recent LAME update:
- fix incorrect use of a deprecated function by replacing it with
a non-deprecated function
Requested by: portmgr (pav; maintainer CCed)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/holyshout/Makefile | 2 | ||||
-rw-r--r-- | audio/holyshout/files/patch-holyshout.c | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/audio/holyshout/Makefile b/audio/holyshout/Makefile index 103a51d89692..d5ea64b7c98a 100644 --- a/audio/holyshout/Makefile +++ b/audio/holyshout/Makefile @@ -7,7 +7,7 @@ PORTNAME= holyshout PORTVERSION= 0.2 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES= audio net MASTER_SITES= ftp://ftp.holywar.net/pub/FreeBSD/ diff --git a/audio/holyshout/files/patch-holyshout.c b/audio/holyshout/files/patch-holyshout.c index c270da050679..61f896678125 100644 --- a/audio/holyshout/files/patch-holyshout.c +++ b/audio/holyshout/files/patch-holyshout.c @@ -208,7 +208,7 @@ - //ret = shout_send_data(&conn, mp3buffer, imp3); - lame_close_infile(&gf) ; - lame_mp3_tags(&gf) ; -+ imp3=lame_encode_finish(gf,mp3buffer,(int)sizeof(mp3buffer)); ++ imp3=lame_encode_flush(gf,mp3buffer,(int)sizeof(mp3buffer)); + lame_close(gf) ; puts("") ; |