diff options
author | Sam Lawrance <lawrance@FreeBSD.org> | 2005-09-09 15:20:59 +0000 |
---|---|---|
committer | Sam Lawrance <lawrance@FreeBSD.org> | 2005-09-09 15:20:59 +0000 |
commit | ffb8d81b53625cda02a124b571e3a35f3f1c9d9c (patch) | |
tree | 783958915dfd1530ae41c5df4b8daeeaf69cc04b /math/tomsfastmath | |
parent | Update to 0.3.2 (diff) |
Mark BROKEN on sparc64 until maintainer can look at it
PR: ports/85884
Submitted by: Wesley Shields <wxs@csh.rit.edu> (maintainer)
Notes
Notes:
svn path=/head/; revision=142289
Diffstat (limited to 'math/tomsfastmath')
-rw-r--r-- | math/tomsfastmath/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/math/tomsfastmath/Makefile b/math/tomsfastmath/Makefile index 9d7f68ab5011..3041472c489f 100644 --- a/math/tomsfastmath/Makefile +++ b/math/tomsfastmath/Makefile @@ -22,7 +22,13 @@ USE_GMAKE= yes ALL_TARGET= default USE_REINPLACE= yes +.include <bsd.port.pre.mk> + +.if ${ARCH} == "sparc64" +BROKEN= "Does not build on sparc64" +.endif + post-patch: @${REINPLACE_CMD} -e 's|
||' ${WRKSRC}/fp_montgomery_reduce.c -.include <bsd.port.mk> +.include <bsd.port.post.mk> |