blob: 6b75c9278a75ae52aa65abce9052ea0c95e0ba0e (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
--- 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.
|