diff options
author | kris <kris@FreeBSD.org> | 2004-02-19 09:35:15 +0000 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-19 09:35:15 +0000 |
commit | 1075c4f57297b66f4cbb52830a4643c91272c0e9 (patch) | |
tree | 5f5195b3663a7119e36010e2aab0d2b021984c0a /audio | |
parent | 802cd560ab357189a445c67fe2bb5c92a7283769 (diff) | |
download | FreeBSD-ports-1075c4f57297b66f4cbb52830a4643c91272c0e9.zip FreeBSD-ports-1075c4f57297b66f4cbb52830a4643c91272c0e9.tar.gz |
FORBIDDEN on 5.x: Does not respect PTHREAD_{CFLAGS,LIBS}
Diffstat (limited to 'audio')
-rw-r--r-- | audio/xmms-kj/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/audio/xmms-kj/Makefile b/audio/xmms-kj/Makefile index 7ed8b26..14ea7dc 100644 --- a/audio/xmms-kj/Makefile +++ b/audio/xmms-kj/Makefile @@ -24,10 +24,16 @@ WRKSRC= ${WRKDIR}/${PORTNAME} USE_X_PREFIX= yes USE_GNOME= gtk12 +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 502102 +FORBIDDEN= "Does not respect PTHREAD_{CFLAGS,LIBS}" +.endif + do-build: cd ${WRKSRC} && make do-install: cd ${WRKSRC} && make install -.include <bsd.port.mk> +.include <bsd.port.post.mk> |