diff options
author | marino <marino> | 2011-11-24 20:34:34 +0000 |
---|---|---|
committer | marino <marino> | 2011-11-24 20:34:34 +0000 |
commit | 9dc7c22b5b8520265472d11d0202a0251c84372c (patch) | |
tree | 8cd2ca4ebcb0b10e3be51fce879ef35a5c5893b7 /audio | |
parent | 342add1a06dbe23cd32fa466c0956c14fb87a320 (diff) | |
download | pkgsrc-9dc7c22b5b8520265472d11d0202a0251c84372c.tar.gz |
audio/terminatorx: Fix DragonFly breakage
To restore buildability on DragonFly:
1) Added <string.h> to global header
2) Reversed patch-aa's modification of scandir
No PKGREVISION bump required.
Diffstat (limited to 'audio')
-rw-r--r-- | audio/terminatorx/distinfo | 5 | ||||
-rw-r--r-- | audio/terminatorx/patches/patch-aa | 4 | ||||
-rw-r--r-- | audio/terminatorx/patches/patch-ai | 12 |
3 files changed, 17 insertions, 4 deletions
diff --git a/audio/terminatorx/distinfo b/audio/terminatorx/distinfo index 756731873f1..b0a4927109e 100644 --- a/audio/terminatorx/distinfo +++ b/audio/terminatorx/distinfo @@ -1,9 +1,9 @@ -$NetBSD: distinfo,v 1.6 2011/09/04 05:10:20 dholland Exp $ +$NetBSD: distinfo,v 1.7 2011/11/24 20:34:34 marino Exp $ SHA1 (terminatorX-3.82.tar.bz2) = 8d492fc759ffb77c2549190081077e12f765233f RMD160 (terminatorX-3.82.tar.bz2) = b70c688101844a07eddcd3e090cd6e805e93f066 Size (terminatorX-3.82.tar.bz2) = 395755 bytes -SHA1 (patch-aa) = c313aed6ec7bba657a3941ddc5586ad7b7c734eb +SHA1 (patch-aa) = 12100a880e86430acec603721b0e3110731225e3 SHA1 (patch-ab) = 16e264ac60c0ec65c525baddc5c3e71d039cc0c3 SHA1 (patch-ac) = 4a86d5f59ecf6c072589bf5e57d7ab0ef4d7d7eb SHA1 (patch-ad) = e3125815472b334882bc190405a2ff217a018fb3 @@ -11,4 +11,5 @@ SHA1 (patch-ae) = 5412826df902f180d93de078ec1a5bcc8a6b1bfa SHA1 (patch-af) = 7129f695f1c7e79800d123b4a3d5db7a8f6c3f5d SHA1 (patch-ag) = 53094ee9beb48478ee4ea3c375422c858fc2fc81 SHA1 (patch-ah) = f2d7ca4631b177840b88d82d614e11ba779b4ef5 +SHA1 (patch-ai) = 7fe25f7b29fcb807b00bee363337f163f0171813 SHA1 (patch-src_tx__dial_c) = b2c6824b1c103d3f86943d6040e741aab6158cb9 diff --git a/audio/terminatorx/patches/patch-aa b/audio/terminatorx/patches/patch-aa index ad7efdf0501..141eb983358 100644 --- a/audio/terminatorx/patches/patch-aa +++ b/audio/terminatorx/patches/patch-aa @@ -1,4 +1,4 @@ -$NetBSD: patch-aa,v 1.1 2005/12/12 00:26:36 joerg Exp $ +$NetBSD: patch-aa,v 1.2 2011/11/24 20:34:34 marino Exp $ --- src/tX_dialog.cc.orig 2005-12-12 00:13:12.000000000 +0000 +++ src/tX_dialog.cc @@ -6,7 +6,7 @@ $NetBSD: patch-aa,v 1.1 2005/12/12 00:26:36 joerg Exp $ #ifdef USE_OSS static GList *oss_devices=NULL; -+#if defined(__DragonFly__) || defined(__FreeBSD__) ++#if defined(__FreeBSD__) +int oss_select_dsp_only(struct dirent *entry){ +#else int oss_select_dsp_only(const struct dirent *entry){ diff --git a/audio/terminatorx/patches/patch-ai b/audio/terminatorx/patches/patch-ai new file mode 100644 index 00000000000..eb519d6c043 --- /dev/null +++ b/audio/terminatorx/patches/patch-ai @@ -0,0 +1,12 @@ +$NetBSD: patch-ai,v 1.1 2011/11/24 20:34:34 marino Exp $ + +--- src/tX_global.h.orig 2004-11-03 13:25:50.000000000 +0000 ++++ src/tX_global.h +@@ -33,6 +33,7 @@ + extern "C" { + #endif /* __cplusplus */ + ++#include <string.h> + #include <limits.h> + #include <stdio.h> + #include "tX_types.h" |