summaryrefslogtreecommitdiff
path: root/emulators/stella
diff options
context:
space:
mode:
authortron <tron@pkgsrc.org>2000-01-22 23:44:30 +0000
committertron <tron@pkgsrc.org>2000-01-22 23:44:30 +0000
commit66a3dbb89640dd8a6d1b31466a1be707475fb8e9 (patch)
treedcf6399a22f24bfed564ac3caeaa30a406ff9d5e /emulators/stella
parentc1bf3aad293fc6c66e37e7a767e52cfcf300c2d7 (diff)
downloadpkgsrc-66a3dbb89640dd8a6d1b31466a1be707475fb8e9.tar.gz
Use "/dev/sound" instead of "/dev/mixer" as suggested by maximum entropy
in PR pkg/9250.
Diffstat (limited to 'emulators/stella')
-rw-r--r--emulators/stella/files/patch-sum4
-rw-r--r--emulators/stella/patches/patch-aa6
2 files changed, 5 insertions, 5 deletions
diff --git a/emulators/stella/files/patch-sum b/emulators/stella/files/patch-sum
index 99174b2fc03..6127be5350b 100644
--- a/emulators/stella/files/patch-sum
+++ b/emulators/stella/files/patch-sum
@@ -1,5 +1,5 @@
-$NetBSD: patch-sum,v 1.1 1999/07/09 13:50:48 agc Exp $
+$NetBSD: patch-sum,v 1.2 2000/01/22 23:44:30 tron Exp $
-MD5 (patch-aa) = 0c9ebbac06310c66a7e22a1e73204880
+MD5 (patch-aa) = 0746806eb97721a876eb60f42fa18f5f
MD5 (patch-ab) = 0841422715838603e83bfe9826975081
MD5 (patch-ac) = 21f7674db61d697dcc6546fb235f90ed
diff --git a/emulators/stella/patches/patch-aa b/emulators/stella/patches/patch-aa
index 56161fecece..f194954f20f 100644
--- a/emulators/stella/patches/patch-aa
+++ b/emulators/stella/patches/patch-aa
@@ -1,4 +1,4 @@
-$NetBSD: patch-aa,v 1.1.1.1 1999/05/18 23:14:16 tv Exp $
+$NetBSD: patch-aa,v 1.2 2000/01/22 23:44:31 tron Exp $
--- ../ui/sound/OSS.c.orig Tue May 18 10:19:45 1999
+++ ../ui/sound/OSS.c Tue May 18 10:24:03 1999
@@ -20,10 +20,10 @@ $NetBSD: patch-aa,v 1.1.1.1 1999/05/18 23:14:16 tv Exp $
/* Open the sound device for writing */
- if((fd = open("/dev/dsp", O_WRONLY, 0)) == -1)
-+ if((fd = open("/dev/mixer", O_WRONLY, 0)) == -1)
++ if((fd = open("/dev/sound", O_WRONLY, 0)) == -1)
{
- printf("stella-sound: Unable to open /dev/dsp device!\n");
-+ printf("stella-sound: Unable to open /dev/mixer device!\n");
++ printf("stella-sound: Unable to open /dev/sound device!\n");
return 1;
}