diff options
author | Sheldon Hearn <sheldonh@FreeBSD.org> | 2002-06-26 21:04:06 +0000 |
---|---|---|
committer | Sheldon Hearn <sheldonh@FreeBSD.org> | 2002-06-26 21:04:06 +0000 |
commit | 23e3365efe6b28235fc3766a193b500bbbc99e7f (patch) | |
tree | 068a9bc36447ae136deb9fe4256d63eccd95aa50 /audio/gqmpeg-devel | |
parent | Update to 0.10 (diff) |
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.
Notes
Notes:
svn path=/head/; revision=62054
Diffstat (limited to 'audio/gqmpeg-devel')
-rw-r--r-- | audio/gqmpeg-devel/files/patch-src::mixer.c | 11 |
1 files changed, 11 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 000000000000..e41e68c40b86 --- /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__) |