diff options
author | dsainty <dsainty> | 2008-12-23 08:58:01 +0000 |
---|---|---|
committer | dsainty <dsainty> | 2008-12-23 08:58:01 +0000 |
commit | 20e71c43d6d1c99fed9a7102007abb22f77567bc (patch) | |
tree | 9c99df51bad29ae041e019d80264030e0e5eb021 | |
parent | 7363a7c5335dd248e4fca11a24893421b0c63f6c (diff) | |
download | pkgsrc-20e71c43d6d1c99fed9a7102007abb22f77567bc.tar.gz |
Fix some overly aggressive cut and pasting that breaks the build under Linux.
It still doesn't build, but it gets further. The fixes here are obvious and
trivial pastos.
-rw-r--r-- | audio/pulseaudio/distinfo | 4 | ||||
-rw-r--r-- | audio/pulseaudio/patches/patch-aa | 10 |
2 files changed, 7 insertions, 7 deletions
diff --git a/audio/pulseaudio/distinfo b/audio/pulseaudio/distinfo index ead567ee239..0cbfdca419e 100644 --- a/audio/pulseaudio/distinfo +++ b/audio/pulseaudio/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.6 2008/12/23 02:15:27 hasso Exp $ +$NetBSD: distinfo,v 1.7 2008/12/23 08:58:01 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) = 8cc076c1301fa90ee0bb113ec3fee885ba99fbb4 +SHA1 (patch-aa) = b29591d8d338a4521d4aa0fb1dcd726368cb2304 SHA1 (patch-ab) = b894cf1797a2f02e8131be8abc8250774bfec1ec SHA1 (patch-ac) = 8f61cf7c4a6681ab53c9ddf1007acb1bf524fe15 SHA1 (patch-ad) = 40474c4e04dffe836c41ff348d959c821da527fd diff --git a/audio/pulseaudio/patches/patch-aa b/audio/pulseaudio/patches/patch-aa index c87db1bd33a..75ef3b2a1f6 100644 --- a/audio/pulseaudio/patches/patch-aa +++ b/audio/pulseaudio/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.2 2008/12/18 18:43:52 jmcneill Exp $ +$NetBSD: patch-aa,v 1.3 2008/12/23 08:58:01 dsainty Exp $ --- src/utils/padsp.c.orig 2008-10-01 19:05:01.000000000 -0400 +++ src/utils/padsp.c @@ -125,8 +125,8 @@ $NetBSD: patch-aa,v 1.2 2008/12/18 18:43:52 jmcneill Exp $ if (!filename || ( strcmp(filename, "/dev/dsp") != 0 && -+ strcmp(pathname, "/dev/sound") != 0 && -+ strcmp(pathname, "/dev/audio") != 0 && ++ strcmp(filename, "/dev/sound") != 0 && ++ strcmp(filename, "/dev/audio") != 0 && strcmp(filename, "/dev/adsp") != 0 && strcmp(filename, "/dev/sndstat") != 0 && strcmp(filename, "/dev/mixer") != 0 )) { @@ -161,8 +161,8 @@ $NetBSD: patch-aa,v 1.2 2008/12/18 18:43:52 jmcneill Exp $ if (!filename || !mode || ( strcmp(filename, "/dev/dsp") != 0 && -+ strcmp(pathname, "/dev/sound") != 0 && -+ strcmp(pathname, "/dev/audio") != 0 && ++ strcmp(filename, "/dev/sound") != 0 && ++ strcmp(filename, "/dev/audio") != 0 && strcmp(filename, "/dev/adsp") != 0 && strcmp(filename, "/dev/sndstat") != 0 && strcmp(filename, "/dev/mixer") != 0 )) { |