diff options
author | snj <snj@pkgsrc.org> | 2004-05-17 22:44:37 +0000 |
---|---|---|
committer | snj <snj@pkgsrc.org> | 2004-05-17 22:44:37 +0000 |
commit | 0714c5e382ef78e46bb35904c908327039f938b1 (patch) | |
tree | a3a7f0495b77468a464ee0617048db97c4372f79 /audio/xmms | |
parent | 7b4450341893ea3a2fd5c04f718d09e31dd52a36 (diff) | |
download | pkgsrc-0714c5e382ef78e46bb35904c908327039f938b1.tar.gz |
Fix lossage from revision 1.10 of Makefile.common by including
<soundcard.h> instead of <Output/OSS/soundcard.h> in Output/esd/mixer.c.
xmms-esound now builds. From Peter Bex.
Diffstat (limited to 'audio/xmms')
-rw-r--r-- | audio/xmms/distinfo | 3 | ||||
-rw-r--r-- | audio/xmms/patches/patch-ag | 13 |
2 files changed, 15 insertions, 1 deletions
diff --git a/audio/xmms/distinfo b/audio/xmms/distinfo index b4f0aefbfde..2eafce5a0ca 100644 --- a/audio/xmms/distinfo +++ b/audio/xmms/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.20 2004/05/12 19:33:14 drochner Exp $ +$NetBSD: distinfo,v 1.21 2004/05/17 22:44:37 snj Exp $ SHA1 (xmms-1.2.10.tar.bz2) = a3c3d3756d5263183c27b3c50a7f5404cba8bfaf Size (xmms-1.2.10.tar.bz2) = 2418265 bytes @@ -8,3 +8,4 @@ SHA1 (patch-ac) = 208d0f9ac537a042893db02130c14a8417808f9c SHA1 (patch-ad) = c1ae34511eced8a7856d517f68ed23611dc0cb0c SHA1 (patch-ae) = ee126d0744feea2e260a0080a6903ea49a0b12ec SHA1 (patch-af) = 9b97ab806c497533a0e4d116a072a5d7920a15a6 +SHA1 (patch-ag) = 7808be549ba7a9f3b301f4f4bb7f7bb960201c3e diff --git a/audio/xmms/patches/patch-ag b/audio/xmms/patches/patch-ag new file mode 100644 index 00000000000..72f8b6ee6d6 --- /dev/null +++ b/audio/xmms/patches/patch-ag @@ -0,0 +1,13 @@ +$NetBSD: patch-ag,v 1.4 2004/05/17 22:44:37 snj Exp $ + +--- Output/esd/mixer.c.orig 2004-05-17 15:21:52.000000000 -0700 ++++ Output/esd/mixer.c 2004-05-17 15:21:58.000000000 -0700 +@@ -24,7 +24,7 @@ + + #include <sys/ioctl.h> + #ifdef HAVE_OSS +-# include <Output/OSS/soundcard.h> ++# include <soundcard.h> + # define OSS_AVAILABLE TRUE + #else + # define OSS_AVAILABLE FALSE |