freebsd-ports/graphics/libxine/files/patch-src:audio_out:audio_oss_out.c
Motoyuki Konno f5f9e49a3b Fix build problem on FreeBSD 5-current.
o <machine/soundcard.h> is moved to <sys/soundcard.h> on 4-stable
    and 5-current.
2002-04-11 04:58:47 +00:00

14 lines
395 B
C

--- src/audio_out/audio_oss_out.c.old Tue Jan 15 21:55:15 2002
+++ src/audio_out/audio_oss_out.c Thu Apr 11 13:27:47 2002
@@ -49,7 +49,11 @@
#if defined(__OpenBSD__)
#include <soundcard.h>
#elif defined(__FreeBSD__)
+#if __FreeBSD__ > 3
+#include <sys/soundcard.h>
+#else
#include <machine/soundcard.h>
+#endif
#else
#if defined(__linux__)
#include <linux/config.h> /* Check for DEVFS */