diff options
author | kris <kris@FreeBSD.org> | 2004-03-13 14:01:27 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-03-13 14:01:27 +0800 |
commit | 4e3fb7d5ff154345977391782507d6af709c7cdc (patch) | |
tree | 881513ee596e5c4536aa939868341405ec7ed6d6 /net | |
parent | 418d6c334d050a8fdd26a474532b8f9e48689211 (diff) | |
download | freebsd-ports-gnome-4e3fb7d5ff154345977391782507d6af709c7cdc.tar.gz freebsd-ports-gnome-4e3fb7d5ff154345977391782507d6af709c7cdc.tar.zst freebsd-ports-gnome-4e3fb7d5ff154345977391782507d6af709c7cdc.zip |
BROKEN on !i386 and !alpha: Does not compile
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> |