summaryrefslogtreecommitdiff
path: root/audio
diff options
context:
space:
mode:
authorwiz <wiz@pkgsrc.org>2001-01-26 09:32:42 +0000
committerwiz <wiz@pkgsrc.org>2001-01-26 09:32:42 +0000
commitc9a1d9d73ba4b41d5e2802b5f62bbae41ae2b01c (patch)
tree92c316831177da4c12d450f155c401c0110efd32 /audio
parent82700cffcda96d00584c550b20c2075138963d59 (diff)
downloadpkgsrc-c9a1d9d73ba4b41d5e2802b5f62bbae41ae2b01c.tar.gz
This file is obsolete (patch integrated).
Diffstat (limited to 'audio')
-rw-r--r--audio/gqmpeg/patches/patch-ab16
1 files changed, 0 insertions, 16 deletions
diff --git a/audio/gqmpeg/patches/patch-ab b/audio/gqmpeg/patches/patch-ab
deleted file mode 100644
index 1537c3e3a61..00000000000
--- a/audio/gqmpeg/patches/patch-ab
+++ /dev/null
@@ -1,16 +0,0 @@
-$NetBSD: patch-ab,v 1.14 2000/12/08 21:24:52 wiz Exp $
-
---- src/mixer.c.orig Sun Dec 3 06:44:59 2000
-+++ src/mixer.c
-@@ -309,7 +320,10 @@
- /* if problem, revert back to this:
- device->device_name = infos[i].label.name;
- */
-- device->device_name = g_strconcat(infos[infos[i].mixer_class].label.name, "." ,infos[i].label.name, NULL);
-+ if (0 <= infos[i].mixer_class && infos[i].mixer_class < ndev)
-+ device->device_name = g_strconcat(infos[infos[i].mixer_class].label.name, "." ,infos[i].label.name, NULL);
-+ else
-+ device->device_name = infos[i].label.name;
- device->stereo = 1;
- device->recordable = 0;
- device_list = g_list_append(device_list, device);