diff options
author | pav <pav@FreeBSD.org> | 2006-12-31 22:07:50 +0800 |
---|---|---|
committer | pav <pav@FreeBSD.org> | 2006-12-31 22:07:50 +0800 |
commit | 396524431fb04bd3ffc8430290609681589ac48b (patch) | |
tree | e04640c49ffafdeba9c4883959fd07d4965c82fa /multimedia/xmms | |
parent | 2a5749683f7c76724c9e477976af8c18e9f87d3c (diff) | |
download | freebsd-ports-gnome-396524431fb04bd3ffc8430290609681589ac48b.tar.gz freebsd-ports-gnome-396524431fb04bd3ffc8430290609681589ac48b.tar.zst freebsd-ports-gnome-396524431fb04bd3ffc8430290609681589ac48b.zip |
- Fix build with gcc 4.1
Approved by: maintainer timeout (15 days)
Diffstat (limited to 'multimedia/xmms')
-rw-r--r-- | multimedia/xmms/files/patch-gcc41 | 15 |
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); |