Fix build on -CURRENT:

The gqmpeg source includes <machine/soundcard.h>.  The file's canonical
location in FreeBSD has been <sys/soundcard.h> for ages now (in -STABLE
as well), and <machine/soundcard.h> is now obsoleted in -CURRENT.

Maintainer notified in private mail.
This commit is contained in:
Sheldon Hearn 2002-06-26 21:04:06 +00:00
parent aa246b87d7
commit 23e3365efe
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=62054
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,11 @@
--- src/mixer.c.orig Wed Jun 26 22:57:26 2002
+++ src/mixer.c Wed Jun 26 22:57:38 2002
@@ -36,7 +36,7 @@
#endif
#ifdef __FreeBSD__
-#include <machine/soundcard.h>
+#include <sys/soundcard.h>
#endif
#if defined(__NetBSD__) || defined(__OpenBSD__)

View file

@ -0,0 +1,11 @@
--- src/mixer.c.orig Wed Jun 26 22:57:26 2002
+++ src/mixer.c Wed Jun 26 22:57:38 2002
@@ -36,7 +36,7 @@
#endif
#ifdef __FreeBSD__
-#include <machine/soundcard.h>
+#include <sys/soundcard.h>
#endif
#if defined(__NetBSD__) || defined(__OpenBSD__)