summaryrefslogtreecommitdiff
path: root/audio/xmmix
diff options
context:
space:
mode:
authorjoerg <joerg>2005-12-11 20:35:40 +0000
committerjoerg <joerg>2005-12-11 20:35:40 +0000
commit207002e9e043eede6fd58b2c642180110582cf0e (patch)
treebb14c4adb716e46ad3cd23e7893cd190df7a1da9 /audio/xmmix
parent7c03a02231a5228435a8735c5033b41b6b9f8b3e (diff)
downloadpkgsrc-207002e9e043eede6fd58b2c642180110582cf0e.tar.gz
Initialise errfp at runtime, unbreaks DragonFly and FreeBSD.
Diffstat (limited to 'audio/xmmix')
-rw-r--r--audio/xmmix/distinfo4
-rw-r--r--audio/xmmix/patches/patch-bb25
2 files changed, 23 insertions, 6 deletions
diff --git a/audio/xmmix/distinfo b/audio/xmmix/distinfo
index 568aa7e50ea..eae6e92abc9 100644
--- a/audio/xmmix/distinfo
+++ b/audio/xmmix/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.5 2005/02/23 20:39:54 agc Exp $
+$NetBSD: distinfo,v 1.6 2005/12/11 20:35:40 joerg Exp $
SHA1 (xmmix-1.2.tar.gz) = 9ec44500dccba63ef7a9d50f66acfb6e45d08714
RMD160 (xmmix-1.2.tar.gz) = 05f5ca6811848f0b86a9dc94e6d943a07cda0ba8
@@ -7,6 +7,6 @@ SHA1 (patch-aa) = 68a33a91de0e373da4818a26e339d3c87e895b33
SHA1 (patch-ab) = cbdc30e17aa2a857d756b403c0873436e9480129
SHA1 (patch-ac) = 8d68a2de3ee8a094a7f84ecb1d387bc22ca82bbb
SHA1 (patch-ba) = 8092fcec3c39060da476f2ad2d018e8e0a8aa028
-SHA1 (patch-bb) = ce6a804c52dac8c65661d3a17c5cccbb4b2957d0
+SHA1 (patch-bb) = 4c468f8b42150b2dc9d21176863be168428b8885
SHA1 (patch-bc) = 1c77a45c31ee023a3b0e7c9a720c1d9d2d2fb75e
SHA1 (patch-bd) = d4209f5de96ef45d47aec2c28ccfe099c0c13fdf
diff --git a/audio/xmmix/patches/patch-bb b/audio/xmmix/patches/patch-bb
index 698341a3c13..596d391ae6b 100644
--- a/audio/xmmix/patches/patch-bb
+++ b/audio/xmmix/patches/patch-bb
@@ -1,8 +1,25 @@
-$NetBSD: patch-bb,v 1.1 2000/11/02 14:24:32 mjl Exp $
+$NetBSD: patch-bb,v 1.2 2005/12/11 20:35:41 joerg Exp $
---- ../xmmix-1.2/main.c Thu Nov 7 17:01:43 1996
-+++ ./main.c Mon Aug 11 23:12:51 1997
-@@ -159,7 +159,7 @@
+--- main.c.orig 1996-11-07 16:01:43.000000000 +0000
++++ main.c
+@@ -33,7 +33,7 @@ static char *_main_c_ident_ = "@(#)main.
+ bool_t exit_flag; /* Flag indicating end of application */
+ appdata_t app_data; /* Options data */
+ widgets_t widgets; /* Holder of all widgets */
+-FILE *errfp = stderr;/* Error message stream */
++FILE *errfp;/* Error message stream */
+
+
+ /***********************
+@@ -103,6 +103,7 @@ main(int argc, char **argv)
+
+ /* Initialize variables */
+ exit_flag = FALSE;
++ errfp = stderr;
+
+ /* Handle some signals */
+ signal(SIGINT, onsig);
+@@ -159,7 +160,7 @@ main(int argc, char **argv)
post_realize_config(&widgets);
/* Register callback routines */