pkgsrc-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[pkgsrc/trunk]: pkgsrc/audio/tfmxplay Use soundcard.h on OpenBSD and sys/soun...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/5f714bc0d361
branches:  trunk
changeset: 502915:5f714bc0d361
user:      joerg <joerg%pkgsrc.org@localhost>
date:      Thu Nov 10 19:51:23 2005 +0000

description:
Use soundcard.h on OpenBSD and sys/soundcard.h on FreeBSD and DragonFly.

diffstat:

 audio/tfmxplay/distinfo         |   3 ++-
 audio/tfmxplay/patches/patch-ad |  16 ++++++++++++++++
 2 files changed, 18 insertions(+), 1 deletions(-)

diffs (34 lines):

diff -r b17979e20352 -r 5f714bc0d361 audio/tfmxplay/distinfo
--- a/audio/tfmxplay/distinfo   Thu Nov 10 19:47:41 2005 +0000
+++ b/audio/tfmxplay/distinfo   Thu Nov 10 19:51:23 2005 +0000
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.7 2005/02/23 20:39:52 agc Exp $
+$NetBSD: distinfo,v 1.8 2005/11/10 19:51:23 joerg Exp $
 
 SHA1 (tfmxplay-0.6.tgz) = 8028a03d4198da0733fa297e9e6ada864f0c782a
 RMD160 (tfmxplay-0.6.tgz) = 52c31309588b4a8073bf0987f0237ca9d6274b35
@@ -6,3 +6,4 @@
 SHA1 (patch-aa) = 38bf1771c8773e7e12dbd1a563fa30ec9ae43c0f
 SHA1 (patch-ab) = 0e18cc967b397e48857f47bc231ae5a5eeb0e8dc
 SHA1 (patch-ac) = 5796904e2b50e538973deec598ec69728e48e8d5
+SHA1 (patch-ad) = 1b3456f95f94b3a665899bbd84a97d44157e32cb
diff -r b17979e20352 -r 5f714bc0d361 audio/tfmxplay/patches/patch-ad
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/tfmxplay/patches/patch-ad   Thu Nov 10 19:51:23 2005 +0000
@@ -0,0 +1,16 @@
+$NetBSD: patch-ad,v 1.1 2005/11/10 19:51:23 joerg Exp $
+
+--- audio.c.orig       2001-08-02 11:06:48.000000000 +0000
++++ audio.c
+@@ -5,8 +5,10 @@
+  */
+ 
+ 
+-#ifdef __NetBSD__
++#if defined(__NetBSD__) || defined(__OpenBSD__)
+ #include <soundcard.h>
++#elif defined(__FreeBSD__) || defined(__DragonFly__)
++#include <sys/soundcard.h>
+ #else
+ #include <linux/soundcard.h>
+ #endif



Home | Main Index | Thread Index | Old Index