aboutsummaryrefslogtreecommitdiff
path: root/audio/xmmix
diff options
context:
space:
mode:
authorBruce A. Mah <bmah@FreeBSD.org>2002-03-23 23:08:18 +0000
committerBruce A. Mah <bmah@FreeBSD.org>2002-03-23 23:08:18 +0000
commite2601dd8bbf9c21909472043073855196e7b246b (patch)
tree1b2d3f8b0c7dfd7d8dfc4ab7ac7bffbdb2342a3a /audio/xmmix
parent7fd1fa1461b3392a6a16f65fa9c465ad8071199c (diff)
downloadports-e2601dd8bbf9c21909472043073855196e7b246b.tar.gz
ports-e2601dd8bbf9c21909472043073855196e7b246b.zip
Unbreak port build on -CURRENT.
Notes
Notes: svn path=/head/; revision=56499
Diffstat (limited to 'audio/xmmix')
-rw-r--r--audio/xmmix/files/patch-ae19
1 files changed, 19 insertions, 0 deletions
diff --git a/audio/xmmix/files/patch-ae b/audio/xmmix/files/patch-ae
new file mode 100644
index 000000000000..315dc20facb3
--- /dev/null
+++ b/audio/xmmix/files/patch-ae
@@ -0,0 +1,19 @@
+--- main.c.orig Sat Mar 23 15:01:57 2002
++++ main.c Sat Mar 23 15:02:28 2002
+@@ -33,7 +33,7 @@
+ 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 @@
+
+ /* Initialize variables */
+ exit_flag = FALSE;
++ errfp = stderr;
+
+ /* Handle some signals */
+ signal(SIGINT, onsig);