View | Details | Raw Unified | Return to bug 118006
Collapse All | Expand All

(-)Makefile (-5 / +1 lines)
Lines 35-44 Link Here
35
35
36
.include <bsd.port.pre.mk>
36
.include <bsd.port.pre.mk>
37
37
38
.if ${OSVERSION} >= 700042
39
BROKEN=		Does not compile with GCC 4.2
40
.endif
41
42
.if ${HAVE_GNOME:Mgtk12}!=""
38
.if ${HAVE_GNOME:Mgtk12}!=""
43
USE_GNOME+=	gtk12
39
USE_GNOME+=	gtk12
44
CONFIGURE_ARGS+=--with-gtk
40
CONFIGURE_ARGS+=--with-gtk
Lines 67-73 Link Here
67
post-install:
63
post-install:
68
.if !defined(NOPORTDOCS)
64
.if !defined(NOPORTDOCS)
69
	${MKDIR} ${PREFIX}/share/doc/TekNap
65
	${MKDIR} ${PREFIX}/share/doc/TekNap
70
	${TAR} --directory ${WRKSRC}/teknap-help -cf - . --exclude CVS | \
66
	${TAR} --directory ${WRKSRC}/teknap-help -cf - . | \
71
	${TAR} --directory ${PREFIX}/share/TekNap/help -xf -
67
	${TAR} --directory ${PREFIX}/share/TekNap/help -xf -
72
	${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/TekNap
68
	${INSTALL_DATA} ${WRKSRC}/README ${PREFIX}/share/doc/TekNap
73
	@${ECHO}
69
	@${ECHO}
(-)files/patch-source_share.c (+11 lines)
Added Link Here
1
--- source/share.c.orig	2007-11-12 15:41:18.000000000 +0100
2
+++ source/share.c	2007-11-12 15:43:42.000000000 +0100
3
@@ -38,7 +38,7 @@
4
 
5
 static pthread_mutex_t quit_mutex = PTHREAD_MUTEX_INITIALIZER;
6
 
7
-static pthread_mutex_t fserv_struct_mutex = PTHREAD_MUTEX_INITIALIZER;
8
+pthread_mutex_t fserv_struct_mutex = PTHREAD_MUTEX_INITIALIZER;
9
 pthread_mutex_t shared_count_mutex = PTHREAD_MUTEX_INITIALIZER;
10
 static void share_thread_signal_setup(void);
11
 
(-)files/patch-source_timer.c (+11 lines)
Added Link Here
1
--- source/timer.c.orig	2007-11-12 15:43:52.000000000 +0100
2
+++ source/timer.c	2007-11-12 15:44:47.000000000 +0100
3
@@ -145,7 +145,7 @@
4
  * This is put here on purpose -- we dont want any of the above functions
5
  * to have any knowledge of this struct.
6
  */
7
-static TimerList *PendingTimers;
8
+TimerList *PendingTimers;
9
 static char *schedule_timer (TimerList *ntimer);
10
 
11
 static char *current_exec_timer = empty_string;

Return to bug 118006