diff options
author | Tilman Keskinoz <arved@FreeBSD.org> | 2004-04-16 09:58:27 +0000 |
---|---|---|
committer | Tilman Keskinoz <arved@FreeBSD.org> | 2004-04-16 09:58:27 +0000 |
commit | 452589b0672610a64bfb2501db80da0eb1f6ac94 (patch) | |
tree | 6d09a767d5d066e02214e70307c4ab6843ece31f /audio/jack | |
parent | Update from prerelease to the real release (diff) |
Mark broken on 5.x with libc_r.
Reported by: "Christer Solskogen" <solskogen@carebears.mine.nu>
Diffstat (limited to 'audio/jack')
-rw-r--r-- | audio/jack/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/jack/Makefile b/audio/jack/Makefile index d347d0062609..08aeb8c00917 100644 --- a/audio/jack/Makefile +++ b/audio/jack/Makefile @@ -29,6 +29,12 @@ ONLY_FOR_ARCHS= i386 amd64 MAN1= jackd.1 jackstart.1 +.include <bsd.port.pre.mk> + +.if (${OSVERSION} > 500000) && (${OSVERSION} < 502102) +BROKEN= "Does not compile" +.endif + post-patch: ${REINPLACE_CMD} -e "s,-lpthread,${PTHREAD_LIBS}," \ ${WRKSRC}/configure ${WRKSRC}/libjack/Makefile.in \ @@ -41,4 +47,4 @@ post-patch: ${WRKSRC}/example-clients/Makefile.in ${CP} ${FILESDIR}/Makefile.in ${WRKSRC}/drivers/oss -.include <bsd.port.mk> +.include <bsd.port.post.mk> |