blob: 2a97feca640e894ddea0a3292dbefe1b48acc848 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
$FreeBSD$
--- ../src/solaris/native/com/sun/media/sound/engine/HAE_API_BSDOS_Capture.c Thu Apr 11 14:58:48 2002
+++ ../src/solaris/native/com/sun/media/sound/engine/HAE_API_BSDOS_Capture.c Thu Apr 11 15:15:16 2002
@@ -45,7 +45,11 @@
#include <sys/wait.h>
#include <errno.h>
#ifdef __FreeBSD__
+#if __FreeBSD__ > 3
+#include <sys/soundcard.h>
+#else
#include <machine/soundcard.h>
+#endif
#endif
#ifdef __NetBSD__
#include <soundcard.h>
|