diff options
author | lukem <lukem@pkgsrc.org> | 2002-08-05 13:12:43 +0000 |
---|---|---|
committer | lukem <lukem@pkgsrc.org> | 2002-08-05 13:12:43 +0000 |
commit | 9343fbe7ab7351d3115665a71c3ad4c91e6854f4 (patch) | |
tree | b8700495a08899a16c6988165f61c2cc0a028ee8 /audio/vorbis-tools/patches/patch-aa | |
parent | 2b7b67ba0c865a4456016d37bc2248d4c0377330 (diff) | |
download | pkgsrc-9343fbe7ab7351d3115665a71c3ad4c91e6854f4.tar.gz |
Update to vorbis-tools 1.0.
(Removed point-patches needed for 1.0rc3)
Diffstat (limited to 'audio/vorbis-tools/patches/patch-aa')
-rw-r--r-- | audio/vorbis-tools/patches/patch-aa | 30 |
1 files changed, 0 insertions, 30 deletions
diff --git a/audio/vorbis-tools/patches/patch-aa b/audio/vorbis-tools/patches/patch-aa deleted file mode 100644 index 142541b93c4..00000000000 --- a/audio/vorbis-tools/patches/patch-aa +++ /dev/null @@ -1,30 +0,0 @@ -$NetBSD: patch-aa,v 1.4 2002/03/19 07:48:44 lukem Exp $ - ---- ogg123/buffer.c.orig Thu Dec 20 11:24:53 2001 -+++ ogg123/buffer.c -@@ -85,12 +85,6 @@ - buf_t *buf = (buf_t *)arg; - - DEBUG("Enter buffer_thread_cleanup"); -- -- /* Cleanup thread data structures */ -- pthread_mutex_unlock(&buf->mutex); -- pthread_mutex_destroy(&buf->mutex); -- pthread_cond_destroy(&buf->playback_cond); -- pthread_cond_destroy(&buf->write_cond); - } - - -@@ -430,6 +424,12 @@ - void buffer_destroy (buf_t *buf) - { - DEBUG("buffer_destroy"); -+ -+ /* Cleanup pthread variables */ -+ pthread_mutex_destroy(&buf->mutex); -+ pthread_cond_destroy(&buf->write_cond); -+ pthread_cond_destroy(&buf->playback_cond); -+ - free(buf); - } - |