diff options
author | wiz <wiz@pkgsrc.org> | 2006-11-02 07:57:56 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2006-11-02 07:57:56 +0000 |
commit | 7589eede4e4c7ced5fb8f75bb0f46088bde595db (patch) | |
tree | f78930bbdf91ed86b650759a8b40dbeab0bf1f85 /audio | |
parent | 3c5f3eb9ce2f459e2e724f10f17e70cd561c894a (diff) | |
download | pkgsrc-7589eede4e4c7ced5fb8f75bb0f46088bde595db.tar.gz |
Remove deprecated CURLOPT_MUTE call. Fixes build with curl-7.16.0.
Addresses PR 34962 by srcshelton at gmail.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/vorbis-tools/distinfo | 3 | ||||
-rw-r--r-- | audio/vorbis-tools/patches/patch-af | 12 |
2 files changed, 14 insertions, 1 deletions
diff --git a/audio/vorbis-tools/distinfo b/audio/vorbis-tools/distinfo index 314ca7bbbf3..baeac584f32 100644 --- a/audio/vorbis-tools/distinfo +++ b/audio/vorbis-tools/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.17 2005/10/20 20:08:59 rillig Exp $ +$NetBSD: distinfo,v 1.18 2006/11/02 07:57:56 wiz Exp $ SHA1 (vorbis-tools-1.1.1.tar.gz) = a1394b39905b389d72f12c2a9f0c86a33d07a487 RMD160 (vorbis-tools-1.1.1.tar.gz) = ed38929b8a81f833f726e489e55e9f62d5ed69ec @@ -8,3 +8,4 @@ SHA1 (patch-ab) = 6c154334ea5a7a7e76982f0588de30548c802fca SHA1 (patch-ac) = 7eb178a2d7a5dbecd83a5df0138c9ab41943251a SHA1 (patch-ad) = 729ca84168ee781335429840ee54a2b894b82f54 SHA1 (patch-ae) = 67bda1581c18dec0e43846f4c39aba35a7b2223e +SHA1 (patch-af) = eafb75d8b9aade62b9862e3df1380f15eba80f47 diff --git a/audio/vorbis-tools/patches/patch-af b/audio/vorbis-tools/patches/patch-af new file mode 100644 index 00000000000..47b3b51b19e --- /dev/null +++ b/audio/vorbis-tools/patches/patch-af @@ -0,0 +1,12 @@ +$NetBSD: patch-af,v 1.1 2006/11/02 07:57:56 wiz Exp $ + +--- ogg123/http_transport.c.orig 2005-06-13 13:11:44.000000000 +0000 ++++ ogg123/http_transport.c +@@ -116,7 +116,6 @@ void set_curl_opts (http_private_t *priv + if (inputOpts.ProxyTunnel) + curl_easy_setopt (handle, CURLOPT_HTTPPROXYTUNNEL, inputOpts.ProxyTunnel); + */ +- curl_easy_setopt(handle, CURLOPT_MUTE, 1); + curl_easy_setopt(handle, CURLOPT_ERRORBUFFER, private->error); + curl_easy_setopt(handle, CURLOPT_PROGRESSFUNCTION, progress_callback); + curl_easy_setopt(handle, CURLOPT_PROGRESSDATA, private); |