aboutsummaryrefslogtreecommitdiffstats
path: root/audio
diff options
context:
space:
mode:
authorbmah <bmah@FreeBSD.org>2002-03-24 07:08:18 +0800
committerbmah <bmah@FreeBSD.org>2002-03-24 07:08:18 +0800
commitf5ed1ef82cc2c34aecd4d007964f994dc0b32410 (patch)
tree135be3f908ac42188220be23a096f42e0dc63bbe /audio
parent86beafc7b3caec8477292fd6bfa939c639fb7fe5 (diff)
downloadfreebsd-ports-gnome-f5ed1ef82cc2c34aecd4d007964f994dc0b32410.tar.gz
freebsd-ports-gnome-f5ed1ef82cc2c34aecd4d007964f994dc0b32410.tar.zst
freebsd-ports-gnome-f5ed1ef82cc2c34aecd4d007964f994dc0b32410.zip
Unbreak port build on -CURRENT.
Diffstat (limited to 'audio')
-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);