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

(-)/kirby/shared/ports/lopster/Makefile (-5 / +1 lines)
Lines 7-13 Link Here
7
7
8
PORTNAME=	lopster
8
PORTNAME=	lopster
9
PORTVERSION=	1.2.2
9
PORTVERSION=	1.2.2
10
PORTREVISION=	3
10
PORTREVISION=	4
11
CATEGORIES=	net-p2p
11
CATEGORIES=	net-p2p
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
12
MASTER_SITES=	${MASTER_SITE_SOURCEFORGE} \
13
		http://lopster.sourceforge.net/download/
13
		http://lopster.sourceforge.net/download/
Lines 24-33 Link Here
24
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
24
CONFIGURE_ENV=	CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS="-L${LOCALBASE}/lib"
25
25
26
.include <bsd.port.pre.mk>
26
.include <bsd.port.pre.mk>
27
28
.if ${OSVERSION} >= 700042
29
BROKEN=		Broken with gcc 4.2
30
.endif
31
27
32
.if exists(${LOCALBASE}/lib/libogg.so.4)
28
.if exists(${LOCALBASE}/lib/libogg.so.4)
33
WITH_OGG=	yes
29
WITH_OGG=	yes
(-)/kirby/shared/ports/lopster/files/patch-src-log.c (+12 lines)
Line 0 Link Here
1
--- src/log.c.orig	Mon Oct 15 07:33:46 2007
2
+++ src/log.c	Mon Oct 15 07:33:46 2007
3
@@ -148,7 +148,8 @@
4
     g_free(log);
5
   }
6
   g_list_free(net?net->logs:other_logs);
7
-  net?net->logs:other_logs = NULL;
8
+  if (net) net->logs = NULL;
9
+  else other_logs = NULL;
10
 }
11
 
12
 void log_file_destroy(log_file_t* lf) {

Return to bug 117203