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

(-)audio/jack/Makefile (-4 / +5 lines)
Lines 48-53 Link Here
48
PLIST_SUB+=	DOCS="@comment "
48
PLIST_SUB+=	DOCS="@comment "
49
.endif
49
.endif
50
50
51
.if ${OSVERSION} < 500000
52
CONFIGURE_ENV+=	ac_cv_func_clock_gettime=no
53
CFLAGS+=	-Duintmax_t=uintptr_t
54
.endif
55
51
.if (${OSVERSION} > 500000 ) && (${OSVERSION} < 502102 )
56
.if (${OSVERSION} > 500000 ) && (${OSVERSION} < 502102 )
52
BROKEN=		Does not compile
57
BROKEN=		Does not compile
53
.endif
58
.endif
Lines 80-88 Link Here
80
85
81
post-build:
86
post-build:
82
	@${RM} -f ${WRKSRC}/doc/reference/html/dir__2F*
87
	@${RM} -f ${WRKSRC}/doc/reference/html/dir__2F*
83
84
.if ${OSVERSION} < 500000
85
BROKEN=		Does not compile on 4.x
86
.endif
87
88
88
.include <bsd.port.post.mk>
89
.include <bsd.port.post.mk>
(-)audio/jack/files/patch-example-clients_lsp.c (+14 lines)
Line 0 Link Here
1
--- example-clients/lsp.c.orig	Fri May 26 11:45:08 2006
2
+++ example-clients/lsp.c	Thu Dec  7 16:58:45 2006
3
@@ -120,9 +120,9 @@
4
 	ports = jack_get_ports (client, NULL, NULL, 0);
5
 
6
 	for (i = 0; ports[i]; ++i) {
7
-		printf ("%s\n", ports[i]);
8
-
9
 		jack_port_t *port = jack_port_by_name (client, ports[i]);
10
+
11
+		printf ("%s\n", ports[i]);
12
 
13
 		if (show_con) {
14
 			if ((connections = jack_port_get_all_connections (client, jack_port_by_name(client, ports[i]))) != 0) {

Return to bug 106982