diff options
author | dsainty <dsainty> | 2008-12-24 04:11:17 +0000 |
---|---|---|
committer | dsainty <dsainty> | 2008-12-24 04:11:17 +0000 |
commit | fce53a7eee01db43631a76752448d17d0f5e2a14 (patch) | |
tree | d5b51406f6d66146cb8a2310da7487382b646f86 /audio/pulseaudio | |
parent | b5786b715b57a81f90505f12dbbd00c5868111b8 (diff) | |
download | pkgsrc-fce53a7eee01db43631a76752448d17d0f5e2a14.tar.gz |
The rtstutter test is afunctional for all operating systems but one. Make it
go one operating system further.
Old patch-ac disabled the guts of tests/rtstutter.c for all but Linux. But it
isn't that portable on Linux either as it stands, and errors out (on EeePC) at
link time with:
rtstutter.c:(.text+0xbd): undefined reference to `pthread_setaffinity_np'
Just bring Linux in line with other platforms by changing the #ifdef __linux__
to #if 0.
Doesn't deserve a revision bump.
Diffstat (limited to 'audio/pulseaudio')
-rw-r--r-- | audio/pulseaudio/distinfo | 4 | ||||
-rw-r--r-- | audio/pulseaudio/patches/patch-ac | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/audio/pulseaudio/distinfo b/audio/pulseaudio/distinfo index ff7ee43a2a0..1db6b6fabc6 100644 --- a/audio/pulseaudio/distinfo +++ b/audio/pulseaudio/distinfo @@ -1,11 +1,11 @@ -$NetBSD: distinfo,v 1.8 2008/12/23 19:29:29 jmcneill Exp $ +$NetBSD: distinfo,v 1.9 2008/12/24 04:11:17 dsainty Exp $ SHA1 (pulseaudio-0.9.13.tar.gz) = c8482f1bb42d5213bfdbe2154e1a55b7bc04c915 RMD160 (pulseaudio-0.9.13.tar.gz) = 07cea9939dfb4fc76f13bf01dfe22ab6d0fd8459 Size (pulseaudio-0.9.13.tar.gz) = 1308493 bytes SHA1 (patch-aa) = 1493bed9c983c5c2a69f059b43926b936c62ccb7 SHA1 (patch-ab) = b894cf1797a2f02e8131be8abc8250774bfec1ec -SHA1 (patch-ac) = e19d134985565da015e8db6a1f29483e68ba1a2e +SHA1 (patch-ac) = 877f1dd615129aa7396fd3dc142474f2795fa802 SHA1 (patch-ad) = 40474c4e04dffe836c41ff348d959c821da527fd SHA1 (patch-ae) = 1cd31d18c133fdd5e8db59be319ba5b7a45fe0fe SHA1 (patch-af) = 31b8564cb91aabb5de5490659e77de984fd1920b diff --git a/audio/pulseaudio/patches/patch-ac b/audio/pulseaudio/patches/patch-ac index fb6f9ab098c..b380c744324 100644 --- a/audio/pulseaudio/patches/patch-ac +++ b/audio/pulseaudio/patches/patch-ac @@ -1,4 +1,4 @@ -$NetBSD: patch-ac,v 1.2 2008/12/23 19:29:29 jmcneill Exp $ +$NetBSD: patch-ac,v 1.3 2008/12/24 04:11:17 dsainty Exp $ --- src/tests/rtstutter.c.orig 2008-08-19 17:25:05.000000000 -0400 +++ src/tests/rtstutter.c 2008-12-23 13:25:08.000000000 -0500 @@ -6,7 +6,7 @@ $NetBSD: patch-ac,v 1.2 2008/12/23 19:29:29 jmcneill Exp $ static void* work(void *p) PA_GCC_NORETURN; static void* work(void *p) { -+#ifdef __linux__ ++#if 0 cpu_set_t mask; struct sched_param param; |