diff options
author | mycroft <mycroft> | 2001-03-31 02:13:02 +0000 |
---|---|---|
committer | mycroft <mycroft> | 2001-03-31 02:13:02 +0000 |
commit | 3697b4284016afae89252baba9e08b32d552f1ac (patch) | |
tree | 845278b8ad5ca0d8a9cb6a852728ba3cee817d91 /audio | |
parent | 05548ed4485c48c97e934bdee13fc65e309fe887 (diff) | |
download | pkgsrc-3697b4284016afae89252baba9e08b32d552f1ac.tar.gz |
Use /dev/sound, not /dev/audio.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/timidity/files/patch-sum | 7 | ||||
-rw-r--r-- | audio/timidity/patches/patch-aa | 16 |
2 files changed, 18 insertions, 5 deletions
diff --git a/audio/timidity/files/patch-sum b/audio/timidity/files/patch-sum index ba6e0ca42d4..0da28ae24d9 100644 --- a/audio/timidity/files/patch-sum +++ b/audio/timidity/files/patch-sum @@ -1,6 +1,3 @@ -$NetBSD: patch-sum,v 1.6 2000/12/17 01:37:40 wiz Exp $ +$NetBSD: patch-sum,v 1.7 2001/03/31 02:13:02 mycroft Exp $ -This placeholder file is generated by the ``makepatchsum'' target -whenever the patches directory is empty or missing. Its purpose -is to ensure that the presence of any obsolete patches will cause -the proper error to be emitted at build time. +SHA1 (patch-aa) = 6c5019f99759ca9050f149eab74f5361f554f560 diff --git a/audio/timidity/patches/patch-aa b/audio/timidity/patches/patch-aa new file mode 100644 index 00000000000..41ac5535e07 --- /dev/null +++ b/audio/timidity/patches/patch-aa @@ -0,0 +1,16 @@ +$NetBSD: patch-aa,v 1.4 2001/03/31 02:13:03 mycroft Exp $ + +--- timidity/sun_a.c.orig Wed Nov 1 04:20:33 2000 ++++ timidity/sun_a.c Sat Mar 31 02:11:02 2001 +@@ -69,7 +69,11 @@ + #define SUNAUDIO_AENC_SIGWORD AENC_SIGWORDB + #endif + ++#ifndef __NetBSD__ + #define AUDIO_DEV "/dev/audio" ++#else ++#define AUDIO_DEV "/dev/sound" ++#endif + #define AUDIO_CTLDEV "/dev/audioctl" + + |