pkgsrc-Changes-HG archive

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

[pkgsrc/trunk]: pkgsrc/audio/jack Ensure that the "whitespace()" macro functi...



details:   https://anonhg.NetBSD.org/pkgsrc/rev/33c1160e3f0b
branches:  trunk
changeset: 515062:33c1160e3f0b
user:      jlam <jlam%pkgsrc.org@localhost>
date:      Fri Jun 23 14:44:03 2006 +0000

description:
Ensure that the "whitespace()" macro function is always defined, as
it's used within jack_transport.c.  This fixes errors building audio/jack
using the built-in editline library on NetBSD, and fixes the error
noted in the bulk build results:

    http://mail-index.netbsd.org/pkgsrc-bulk/2006/06/20/0000.html

diffstat:

 audio/jack/distinfo         |   3 ++-
 audio/jack/patches/patch-ab |  15 +++++++++++++++
 2 files changed, 17 insertions(+), 1 deletions(-)

diffs (31 lines):

diff -r 67514f5939e5 -r 33c1160e3f0b audio/jack/distinfo
--- a/audio/jack/distinfo       Fri Jun 23 14:36:10 2006 +0000
+++ b/audio/jack/distinfo       Fri Jun 23 14:44:03 2006 +0000
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.2 2006/04/19 15:25:09 joerg Exp $
+$NetBSD: distinfo,v 1.3 2006/06/23 14:44:03 jlam Exp $
 
 SHA1 (jack-audio-connection-kit-0.100.0.tar.gz) = 431ab7647f694d57bc697d150742d70cccdcd43b
 RMD160 (jack-audio-connection-kit-0.100.0.tar.gz) = 31548d58e545cb117428ca72e256a395363ff9b6
 Size (jack-audio-connection-kit-0.100.0.tar.gz) = 682799 bytes
 SHA1 (patch-aa) = 537836a22c61534595dacd2afe69488b4b70e6b1
+SHA1 (patch-ab) = 288aed771bad16d068ad7f78435e09aca7e10535
diff -r 67514f5939e5 -r 33c1160e3f0b audio/jack/patches/patch-ab
--- /dev/null   Thu Jan 01 00:00:00 1970 +0000
+++ b/audio/jack/patches/patch-ab       Fri Jun 23 14:44:03 2006 +0000
@@ -0,0 +1,15 @@
+$NetBSD: patch-ab,v 1.1 2006/06/23 14:44:04 jlam Exp $
+
+--- example-clients/transport.c.orig   2005-06-02 14:31:18.000000000 -0400
++++ example-clients/transport.c
+@@ -29,6 +29,10 @@
+ #include <jack/jack.h>
+ #include <jack/transport.h>
+ 
++#ifndef whitespace
++#define whitespace(c) (((c) == ' ') || ((c) == '\t'))
++#endif
++
+ char *package;                                /* program name */
+ int done = 0;
+ jack_client_t *client;



Home | Main Index | Thread Index | Old Index