summaryrefslogtreecommitdiff
path: root/audio/esound/patches/patch-ab
diff options
context:
space:
mode:
Diffstat (limited to 'audio/esound/patches/patch-ab')
-rw-r--r--audio/esound/patches/patch-ab24
1 files changed, 0 insertions, 24 deletions
diff --git a/audio/esound/patches/patch-ab b/audio/esound/patches/patch-ab
deleted file mode 100644
index 8c43a2d06e4..00000000000
--- a/audio/esound/patches/patch-ab
+++ /dev/null
@@ -1,24 +0,0 @@
-$NetBSD: patch-ab,v 1.9 2011/09/09 15:20:59 wiz Exp $
-
-Adapt path to audio device.
-
---- audio_oss.c.orig 2008-11-18 20:35:19.000000000 +0000
-+++ audio_oss.c
-@@ -20,7 +20,7 @@
- #define ARCH_esd_audio_devices
- const char *esd_audio_devices()
- {
-- return "/dev/dsp, /dev/dsp2, etc.";
-+ return "/dev/audio, /dev/audio2, etc. or /dev/dsp, /dev/dsp2, etc.";
- }
-
- #define NFRAGS 32
-@@ -56,7 +56,7 @@ int esd_audio_open()
- mode |= O_NONBLOCK;
-
- /* open the sound device */
-- device = esd_audio_device ? esd_audio_device : "/dev/dsp";
-+ device = esd_audio_device ? esd_audio_device : DEV_DSP;
- if ((afd = open(device, mode, 0)) == -1)
- { /* Opening device failed */
- if (errno != ENOENT)