View | Details | Raw Unified | Return to bug 199390 | Differences between
and this patch

Collapse All | Expand All

(-)net/miniupnpd/Makefile (+3 lines)
Lines 24-29 Link Here
24
USE_OPENSSL=	yes
24
USE_OPENSSL=	yes
25
USE_RC_SUBR=	miniupnpd
25
USE_RC_SUBR=	miniupnpd
26
26
27
CFLAGS+=	-I${OPENSSLINC}
28
LDFLAGS+=	-L${OPENSSLLIB}
29
27
OPTIONS_DEFINE=	PF_ENABLE_FILTER_RULES CHECK_PORTINUSE IPV6 UPNP_IGDV2 UPNP_STRICT LEASEFILE
30
OPTIONS_DEFINE=	PF_ENABLE_FILTER_RULES CHECK_PORTINUSE IPV6 UPNP_IGDV2 UPNP_STRICT LEASEFILE
28
PF_ENABLE_FILTER_RULES_DESC=	Enable pf generation of filter rules
31
PF_ENABLE_FILTER_RULES_DESC=	Enable pf generation of filter rules
29
CHECK_PORTINUSE_DESC=	Check if ports are in use
32
CHECK_PORTINUSE_DESC=	Check if ports are in use
(-)net/miniupnpd/files/patch-Makefile (+11 lines)
Line 0 Link Here
1
--- Makefile.orig	2014-06-30 12:03:05 UTC
2
+++ Makefile
3
@@ -204,7 +204,7 @@ depend:	config.h
4
 	testgetroute.c testportinuse.c testasyncsendto.c
5
 
6
 miniupnpd: config.h $(ALLOBJS)
7
-	$(CC) $(CFLAGS) -o $@ $(ALLOBJS) $(LIBS)
8
+	$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $(ALLOBJS) $(LIBS)
9
 
10
 # BSDmake :
11
 #	$(CC) $(CFLAGS) -o $@ $> $(LIBS)

Return to bug 199390