diff options
Diffstat (limited to 'x11/emiclock/patches/patch-aa')
-rw-r--r-- | x11/emiclock/patches/patch-aa | 47 |
1 files changed, 0 insertions, 47 deletions
diff --git a/x11/emiclock/patches/patch-aa b/x11/emiclock/patches/patch-aa deleted file mode 100644 index 12b230e5ed3..00000000000 --- a/x11/emiclock/patches/patch-aa +++ /dev/null @@ -1,47 +0,0 @@ -$NetBSD: patch-aa,v 1.1 1999/06/10 00:16:25 hubertf Exp $ - ---- include/sound.h.orig Sat Jan 11 12:12:55 1997 -+++ include/sound.h Sun May 23 10:48:03 1999 -@@ -237,6 +237,42 @@ - - #endif /* FreeBSD */ - -+/* -+ * NetBSD -+ */ -+ -+#if defined(__NetBSD__) && defined(USE_SOUND) -+ -+/* NetBSD with MB6258V */ -+ -+#include <errno.h> -+#include <unistd.h> -+#include <sys/ioctl.h> -+#include <sys/types.h> -+#include <sys/file.h> -+#include <sys/stat.h> -+#include <sys/audioio.h> -+#include <machine/bswap.h> -+ -+#define AUDIO_DEVICE "/dev/audio" -+#define AUDIO_CTLDEVICE "/dev/audioctl" -+#define AUDIOMAGICNUMBER (0x2e736e64) /* ".snd" */ -+#ifndef AUDIO_ENCODING_LINEAR -+#define AUDIO_ENCODING_LINEAR (3) /* Linear PCM encoding */ -+#endif -+ -+#undef O_RDWR -+#define O_RDWR O_WRONLY /* audio $B%G%P%$%9$OF1;~%*!<%W%s$G$-$J$$!)(B */ -+ -+struct SoundCacheBufferTag { -+ char *soundCacheBuffer; -+ int soundLength; -+ audio_info_t soundBParam; -+}; -+ -+#define SoundCacheBuffer struct SoundCacheBufferTag -+ -+#endif /* NetBSD */ - - #else /* USE_NETAUDIO */ - |