diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-03-13 06:01:27 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-03-13 06:01:27 +0000 |
commit | bef279845d6404d3cb534f1b6058cec4bbefdc48 (patch) | |
tree | 5759c6c7dcbcd508a84c788184908c2125d1aee4 /net | |
parent | 97a460131ca84dc3368e82077b7939acd9c486b9 (diff) |
BROKEN on !i386 and !alpha: Does not compile
Notes
Notes:
svn path=/head/; revision=103845
Diffstat (limited to 'net')
-rw-r--r-- | net/pvm/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/net/pvm/Makefile b/net/pvm/Makefile index 1371eda1a7ca..4cb59dd1ea8e 100644 --- a/net/pvm/Makefile +++ b/net/pvm/Makefile @@ -109,6 +109,12 @@ MLINKS= pvm_intro.1 PVM.1 pvmd3.1 pvmd.1 \ pvm_trecv.3 pvmftrecv.3 pvm_unpack.3 pvmfunpack.3 \ pvm_pkmesg.3 pvmfupkmesg.3 +.include <bsd.port.pre.mk> + +.if ${ARCH} != "i386" && ${ARCH} != "alpha" +BROKEN= "Does not compile on !i386 and !alpha" +.endif + pre-patch: @${REINPLACE_CMD} -e 's,<malloc.h>,<stdlib.h>,' \ ${WRKSRC}/tracer/tracer.h ${WRKSRC}/tracer/trclib.h \ @@ -141,4 +147,4 @@ do-install: post-install: ${SED} 's|/usr/local|${PREFIX}|g' ${PKGMESSAGE} -.include <bsd.port.mk> +.include <bsd.port.post.mk> |