openbsd-ports/x11/emiclock/patches/patch-sound2
espie 5fc3a0a31a OpenBSD sound support
(why do I spend my time repairing half-finished `ports' ?)
2000-04-02 12:31:52 +00:00

905 B

--- include/sound.h.orig Sun Apr 2 13:03:19 2000
+++ include/sound.h Sun Apr 2 13:17:32 2000
@@ -207,17 +207,23 @@ struct SoundCacheBufferTag {
 
 
/*
- * FreeBSD
+ * *BSD
*/
 
-#if defined(__FreeBSD__) && defined(USE_SOUND)
+#if (defined(__FreeBSD__) || defined(__OpenBSD__)) && defined(USE_SOUND)
 
-/* FreeBSD with SoundBlaster Pro */
+/* *BSD with SoundBlaster Pro */
 
#include <sys/types.h>
#include <sys/file.h>
#include <sys/stat.h>
+#if defined(__FreeBSD__)
#include <machine/soundcard.h>
+#endif
+#if defined(__OpenBSD__)
+#include <sys/ioctl.h>
+#include <sys/audioio.h>
+#endif
 
#undef O_RDWR
#define O_RDWR O_WRONLY /* audio $B%G%P%$%9$OF1;~%*!<%W%s$G$-$J$$!) */
@@ -230,7 +236,7 @@ struct SoundCacheBufferTag {
#define SoundCacheBuffer struct SoundCacheBufferTag
#define AUDIO_DEVICE "/dev/audio"
 
-#endif /* FreeBSD */
+#endif /* *BSD */
 
 
#else /* USE_NETAUDIO */