head 1.2; access; symbols pkgsrc-2013Q2:1.2.0.4 pkgsrc-2013Q2-base:1.2 pkgsrc-2012Q4:1.2.0.2 pkgsrc-2012Q4-base:1.2 pkgsrc-2012Q3:1.1.0.12 pkgsrc-2012Q3-base:1.1 pkgsrc-2012Q2:1.1.0.10 pkgsrc-2012Q2-base:1.1 pkgsrc-2012Q1:1.1.0.8 pkgsrc-2012Q1-base:1.1 pkgsrc-2011Q4:1.1.0.6 pkgsrc-2011Q4-base:1.1 pkgsrc-2011Q3:1.1.0.4 pkgsrc-2011Q3-base:1.1 pkgsrc-2011Q2:1.1.0.2 pkgsrc-2011Q2-base:1.1; locks; strict; comment @# @; 1.2 date 2012.11.03.01.54.55; author ryoon; state dead; branches; next 1.1; 1.1 date 2011.05.21.15.33.00; author wiz; state Exp; branches; next ; desc @@ 1.2 log @Update to 2.1 * Tested on NetBSD/i386 5.1, /i386 6.0, and /amd64 6.99.13 * Also tested on OpenIndiana/i386 151a7, but my environment lacks audio device, so I cannot check audio output * Tested with multimedia/mplayer's -ao pulse option, works fine * Add gm4 to USE_TOOLS for OpenIndiana build Changelog: Many changes. See http://www.freedesktop.org/wiki/Software/PulseAudio . @ text @$NetBSD: patch-de,v 1.1 2011/05/21 15:33:00 wiz Exp $ pthread_key_create returns 0 on success; return values on failure are not defined. --- src/pulsecore/thread-posix.c.orig 2010-06-13 14:15:54.000000000 +0000 +++ src/pulsecore/thread-posix.c @@@@ -172,7 +172,7 @@@@ pa_tls* pa_tls_new(pa_free_cb_t free_cb) t = pa_xnew(pa_tls, 1); - if (pthread_key_create(&t->key, free_cb) < 0) { + if (pthread_key_create(&t->key, free_cb)) { pa_xfree(t); return NULL; } @ 1.1 log @Add comments to most patches. Also add a patch by drochner: pthread_key_create returns 0 on success; return values on failure are not defined. Remaining patches without comments: patch-ab: adding an ifdef notyet in src/daemon/main.c patch-a{c,e}: --start -> -D (no idea why) patch-af: allow some Linux-only code also on NetBSD @ text @d1 1 a1 1 $NetBSD$ @