summaryrefslogtreecommitdiff
path: root/multimedia/xmms
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2006-12-31 14:07:50 +0000
committerPav Lucistnik <pav@FreeBSD.org>2006-12-31 14:07:50 +0000
commit9970de8508dfb1f46484d0452f809ff477460c74 (patch)
treeeb62d73332d9053bfa66ba55ce98c5e134d9218d /multimedia/xmms
parentTrac Wiki Notification is a plugin that allows users (even anonymous, as long (diff)
- Fix build with gcc 4.1
Approved by: maintainer timeout (15 days)
Notes
Notes: svn path=/head/; revision=181151
Diffstat (limited to 'multimedia/xmms')
-rw-r--r--multimedia/xmms/files/patch-gcc4115
1 files changed, 15 insertions, 0 deletions
diff --git a/multimedia/xmms/files/patch-gcc41 b/multimedia/xmms/files/patch-gcc41
new file mode 100644
index 000000000000..9e63778e2dbf
--- /dev/null
+++ b/multimedia/xmms/files/patch-gcc41
@@ -0,0 +1,15 @@
+--- General/ir/ir.c.orig Mon Mar 5 14:17:44 2001
++++ General/ir/ir.c Sat Dec 16 15:41:23 2006
+@@ -16,10 +16,10 @@
+ #include "ir.h"
+
+ /* Important stuff to know */
+-static gboolean keepGoing = FALSE;
++gboolean keepGoing = FALSE;
+
+ /* The thread handle */
+-static pthread_t irapp_thread;
++pthread_t irapp_thread;
+
+ /* Declarations for calls that we need to mention in the plugin struct */
+ static void init(void);