aboutsummaryrefslogtreecommitdiff
path: root/audio/gqmpeg
diff options
context:
space:
mode:
authorSheldon Hearn <sheldonh@FreeBSD.org>2002-06-26 21:04:06 +0000
committerSheldon Hearn <sheldonh@FreeBSD.org>2002-06-26 21:04:06 +0000
commit23e3365efe6b28235fc3766a193b500bbbc99e7f (patch)
tree068a9bc36447ae136deb9fe4256d63eccd95aa50 /audio/gqmpeg
parentaa246b87d726994109b96db76a8cee0a6867299a (diff)
downloadports-23e3365efe6b28235fc3766a193b500bbbc99e7f.tar.gz
ports-23e3365efe6b28235fc3766a193b500bbbc99e7f.zip
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')
-rw-r--r--audio/gqmpeg/files/patch-src::mixer.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/audio/gqmpeg/files/patch-src::mixer.c b/audio/gqmpeg/files/patch-src::mixer.c
new file mode 100644
index 000000000000..e41e68c40b86
--- /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__)