diff options
author | shattered <shattered@pkgsrc.org> | 2011-04-09 13:20:20 +0000 |
---|---|---|
committer | shattered <shattered@pkgsrc.org> | 2011-04-09 13:20:20 +0000 |
commit | 6f6cfd909e130ffe6d2c71799af616fa4a4e0adc (patch) | |
tree | 68dc94636d4da2dffd0bd675eae4d2940e4f3775 /audio | |
parent | ac34a0cef5775cac7ad3a233c99cc294c0e2698a (diff) | |
download | pkgsrc-6f6cfd909e130ffe6d2c71799af616fa4a4e0adc.tar.gz |
Update to 1.1.0. Notable changes:
Fix segfaults when closing a driver that did not successfully open.
Fix Mac OS X AUHAL support to properly handle suspend/wakeup, headphone plug/unplug, other hardware events
Fix building Mac OS X driver AUHAL compilation for 10.5, restore Mac OS X 10.4 support
Add 24 bit playback to Pulse plugin
Fix compilation of sndio plugin
Fix 24 bit playback in ALSA plugin
Improve/correct latency setup in ALSA (see Trac #1762)
Also fixes crash in ogg123 with libao-pulse (Trac #1689)
Diffstat (limited to 'audio')
-rw-r--r-- | audio/libao/Makefile.common | 4 | ||||
-rw-r--r-- | audio/libao/distinfo | 10 | ||||
-rw-r--r-- | audio/libao/patches/patch-af | 4 |
3 files changed, 9 insertions, 9 deletions
diff --git a/audio/libao/Makefile.common b/audio/libao/Makefile.common index 881d87e6f7b..7d43495590b 100644 --- a/audio/libao/Makefile.common +++ b/audio/libao/Makefile.common @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.common,v 1.32 2010/05/19 18:17:27 drochner Exp $ +# $NetBSD: Makefile.common,v 1.33 2011/04/09 13:20:20 shattered Exp $ # used by audio/libao-arts/Makefile # used by audio/libao-esound/Makefile # used by audio/libao-macosx/Makefile @@ -6,7 +6,7 @@ # used by audio/libao-oss/Makefile # used by audio/libao-sun/Makefile -DISTNAME= libao-1.0.0 +DISTNAME= libao-1.1.0 CATEGORIES= audio devel MASTER_SITES= http://downloads.xiph.org/releases/ao/ diff --git a/audio/libao/distinfo b/audio/libao/distinfo index 121cb943ce0..5dde3453e19 100644 --- a/audio/libao/distinfo +++ b/audio/libao/distinfo @@ -1,8 +1,8 @@ -$NetBSD: distinfo,v 1.21 2010/05/19 18:17:27 drochner Exp $ +$NetBSD: distinfo,v 1.22 2011/04/09 13:20:20 shattered Exp $ -SHA1 (libao-1.0.0.tar.gz) = 47798bb0fad0c68cd2913ae8c6094aeaa18a23ca -RMD160 (libao-1.0.0.tar.gz) = 3fa5bfcad9a5d6b09b46b2f32e52a261fe277d27 -Size (libao-1.0.0.tar.gz) = 394204 bytes +SHA1 (libao-1.1.0.tar.gz) = 9301bc4886f170c7122ab62677fb71cf001c04fd +RMD160 (libao-1.1.0.tar.gz) = 374078af926bb0744fb2301e128a1c5276fdf4ee +Size (libao-1.1.0.tar.gz) = 397102 bytes SHA1 (patch-ab) = dbab16863b62b1df33444ceb518d3c5a11b590fd SHA1 (patch-ae) = 55f13b97d76f605cd99d948e3e85ffff44e5546a -SHA1 (patch-af) = 6f2be44b4c0296263fe9b5565c1c21b16a056734 +SHA1 (patch-af) = 33165ac460863f6fa673cde651fbda1f4a83857c diff --git a/audio/libao/patches/patch-af b/audio/libao/patches/patch-af index 3fe695b3bd4..6c4a56e5b27 100644 --- a/audio/libao/patches/patch-af +++ b/audio/libao/patches/patch-af @@ -1,4 +1,4 @@ -$NetBSD: patch-af,v 1.4 2010/05/19 18:17:27 drochner Exp $ +$NetBSD: patch-af,v 1.5 2011/04/09 13:20:21 shattered Exp $ --- src/plugins/alsa/ao_alsa.c.orig 2008-12-18 23:24:28.000000000 -0500 +++ src/plugins/alsa/ao_alsa.c @@ -11,5 +11,5 @@ $NetBSD: patch-af,v 1.4 2010/05/19 18:17:27 drochner Exp $ +#endif + /* default 500 millisecond buffer */ - #define AO_ALSA_BUFFER_TIME 500000 + #define AO_ALSA_BUFFER_TIME 100000 |