diff options
author | sheldonh <sheldonh@FreeBSD.org> | 2002-06-26 21:04:06 +0000 |
---|---|---|
committer | sheldonh <sheldonh@FreeBSD.org> | 2002-06-26 21:04:06 +0000 |
commit | aaf6e7a90c64364c9235ba8c438d905a24c51698 (patch) | |
tree | d9f20fc08fa32a11c370debf17947dd54821ee14 /audio | |
parent | 698c77b81a52ddf25c1f22aee0f68784984adfce (diff) | |
download | FreeBSD-ports-aaf6e7a90c64364c9235ba8c438d905a24c51698.zip FreeBSD-ports-aaf6e7a90c64364c9235ba8c438d905a24c51698.tar.gz |
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.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/gqmpeg-devel/files/patch-src::mixer.c | 11 | ||||
-rw-r--r-- | audio/gqmpeg/files/patch-src::mixer.c | 11 |
2 files changed, 22 insertions, 0 deletions
diff --git a/audio/gqmpeg-devel/files/patch-src::mixer.c b/audio/gqmpeg-devel/files/patch-src::mixer.c new file mode 100644 index 0000000..e41e68c --- /dev/null +++ b/audio/gqmpeg-devel/files/patch-src::mixer.c @@ -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__) diff --git a/audio/gqmpeg/files/patch-src::mixer.c b/audio/gqmpeg/files/patch-src::mixer.c new file mode 100644 index 0000000..e41e68c --- /dev/null +++ b/audio/gqmpeg/files/patch-src::mixer.c @@ -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__) |