1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-12-25 04:43:33 +00:00

- Fix build with gcc 4.1

Approved by:	maintainer timeout (15 days)
This commit is contained in:
Pav Lucistnik 2006-12-31 14:07:50 +00:00
parent 913e58901e
commit 9970de8508
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=181151

View File

@ -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);