summaryrefslogtreecommitdiffstats
path: root/sys/oss/oss_probe.c
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim@centricular.net>2005-12-10 14:57:48 +0000
committerTim-Philipp Müller <tim@centricular.net>2005-12-10 14:57:48 +0000
commitfc270aab7973d70841134fe8ad511312cc33de4f (patch)
tree0baa2da4e30a3a6b7678e2d7e295913b9e61651d /sys/oss/oss_probe.c
parentc28f84c0c60188a97f1fe888e7a169e3ce086d68 (diff)
configure.ac: Update comment in OSS includes check.
Original commit message from CVS: * configure.ac: Update comment in OSS includes check. * sys/oss/gstossdmabuffer.c: * sys/oss/gstosshelper.c: * sys/oss/gstossmixer.c: * sys/oss/gstossmixertrack.c: * sys/oss/gstosssink.c: * sys/oss/gstosssrc.c: * sys/oss/oss_probe.c: Don't assume the OSS soundcard.h include is always in the sys/ directory. Instead, use the existing defines from config.h to include the right file. Fixes compilation on OpenBSD 3.8 (#323718).
Diffstat (limited to 'sys/oss/oss_probe.c')
-rw-r--r--sys/oss/oss_probe.c21
1 files changed, 11 insertions, 10 deletions
diff --git a/sys/oss/oss_probe.c b/sys/oss/oss_probe.c
index 5b0d1284..af624fa5 100644
--- a/sys/oss/oss_probe.c
+++ b/sys/oss/oss_probe.c
@@ -3,6 +3,7 @@
#include "config.h"
#endif
+
#include <unistd.h>
#include <fcntl.h>
#include <stdio.h>
@@ -11,17 +12,17 @@
#include <glib.h>
#ifdef HAVE_OSS_INCLUDE_IN_SYS
-#include <sys/soundcard.h>
-#else
-
-#ifdef HAVE_OSS_INCLUDE_IN_ROOT
-#include <soundcard.h>
+# include <sys/soundcard.h>
#else
-
-#include <machine/soundcard.h>
-
-#endif /* HAVE_OSS_INCLUDE_IN_ROOT */
-
+# ifdef HAVE_OSS_INCLUDE_IN_ROOT
+# include <soundcard.h>
+# else
+# ifdef HAVE_OSS_INCLUDE_IN_MACHINE
+# include <machine/soundcard.h>
+# else
+# error "What to include?"
+# endif /* HAVE_OSS_INCLUDE_IN_MACHINE */
+# endif /* HAVE_OSS_INCLUDE_IN_ROOT */
#endif /* HAVE_OSS_INCLUDE_IN_SYS */
typedef struct _Probe Probe;