summaryrefslogtreecommitdiff
path: root/audio/gqmpeg
diff options
context:
space:
mode:
authorwiz <wiz>2001-01-26 09:32:42 +0000
committerwiz <wiz>2001-01-26 09:32:42 +0000
commit61e939b52bd5634ec6c57363214841b11394dd9d (patch)
tree92c316831177da4c12d450f155c401c0110efd32 /audio/gqmpeg
parentf334bef9f3520741cdc5f9a451785b3c8c900051 (diff)
downloadpkgsrc-61e939b52bd5634ec6c57363214841b11394dd9d.tar.gz
This file is obsolete (patch integrated).
Diffstat (limited to 'audio/gqmpeg')
-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);