blob: f59657bd3244f06b06ada609539c01a5d07ab1b8 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
$FreeBSD$
--- src/plugins/audio_io_oss.c 2003/07/01 12:26:28 1.1
+++ src/plugins/audio_io_oss.c 2003/07/01 12:26:41
@@ -26,9 +26,9 @@
#ifdef HAVE_OSS_LINUX
#include <linux/soundcard.h>
-#elif HAVE_OSS_SYS
+#elif defined(HAVE_OSS_SYS)
#include <sys/soundcard.h>
-#elif HAVE_OSS_MACHINE
+#elif defined(HAVE_OSS_MACHINE)
#include <machine/soundcard.h>
#else
#error BUG in OSS configuration.
|