diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2011-12-28 06:55:26 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2011-12-28 06:55:26 +0000 |
commit | 6cf6b4399b660e08c756393b012722c862e144f8 (patch) | |
tree | 359a5bfe30bebe7ecc64e8346a3b2a2aa6a61268 | |
parent | aa5c79b5cded252a01ecf19cea68358a407ac824 (diff) | |
download | ports-6cf6b4399b660e08c756393b012722c862e144f8.tar.gz ports-6cf6b4399b660e08c756393b012722c862e144f8.zip |
Notes
-rw-r--r-- | science/bddsolve/Makefile | 4 | ||||
-rw-r--r-- | shells/fd/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/science/bddsolve/Makefile b/science/bddsolve/Makefile index 1c42f9a899ab..ed7b079b6596 100644 --- a/science/bddsolve/Makefile +++ b/science/bddsolve/Makefile @@ -22,6 +22,10 @@ NO_WRKSUBDIR= yes .include <bsd.port.pre.mk> +.if ${ARCH} == "powerpc" +BROKEN= Does not compile on powerpc: runs out of virtual memory +.endif + do-build: ${CXX} ${CFLAGS} -I${LOCALBASE}/include -I${WRKSRC}/include \ ${LDFLAGS} -L${LOCALBASE}/lib -lbdd -lboost_program_options \ diff --git a/shells/fd/Makefile b/shells/fd/Makefile index d36f492b0de4..1219b220e4ac 100644 --- a/shells/fd/Makefile +++ b/shells/fd/Makefile @@ -60,4 +60,10 @@ post-install: @${CAT} ${PKGMESSAGE} .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${ARCH} == "powerpc" +BROKEN= Does not compile on powerpc: tzfile.h: No such file or directory +.endif + +.include <bsd.port.post.mk> |