diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2010-04-01 05:16:19 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2010-04-01 05:16:19 +0000 |
commit | 686a04b74abcca3ca33bbecfc6929632e092e84a (patch) | |
tree | 3b8958b1bb3cc35feca131ed85cc953e08b14c9d /math | |
parent | 08a2e61d8a80056b49456688a226da265e78733a (diff) | |
download | ports-686a04b74abcca3ca33bbecfc6929632e092e84a.tar.gz ports-686a04b74abcca3ca33bbecfc6929632e092e84a.zip |
Notes
Diffstat (limited to 'math')
-rw-r--r-- | math/lp_solve/Makefile | 4 | ||||
-rw-r--r-- | math/tomsfastmath/Makefile | 2 |
2 files changed, 6 insertions, 0 deletions
diff --git a/math/lp_solve/Makefile b/math/lp_solve/Makefile index 1e75fa34fcbc..c6f1eb8bd366 100644 --- a/math/lp_solve/Makefile +++ b/math/lp_solve/Makefile @@ -26,6 +26,10 @@ LPSOLVE_ARCH= ux32 LPSOLVE_ARCH= ux64 .endif +.if ${ARCH} == "powerpc" +BROKEN= Does not install on powerpc +.endif + post-patch: @${FIND} ${WRKSRC} -name "ccc" | ${XARGS} ${REINPLACE_CMD} -e \ "s|^c=.*$$|c='${CC}'|g ; \ diff --git a/math/tomsfastmath/Makefile b/math/tomsfastmath/Makefile index 5e1894bba6cb..5a18171f38ac 100644 --- a/math/tomsfastmath/Makefile +++ b/math/tomsfastmath/Makefile @@ -30,6 +30,8 @@ PLIST_FILES= include/tfm.h lib/libtfm.a .if ${ARCH} == "ia64" || ${ARCH} == "sparc64" BROKEN= Does not compile on ia64 or sparc64 +.elif ${ARCH} == "powerpc" +BROKEN= Causes gcc coredump on powerpc .endif .include <bsd.port.post.mk> |