diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 09:25:49 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 09:25:49 +0000 |
commit | dc06283100763b8fd40e4afa860bf50f7b2f0ea5 (patch) | |
tree | 1a3c0eac53f37c109a076450795940daa0127502 /math | |
parent | Mark as broken with gcc4.2. (diff) |
Mark as broken with gcc4.2 on 64-bit archs.
Notes
Notes:
svn path=/head/; revision=200529
Diffstat (limited to 'math')
-rw-r--r-- | math/yacas/Makefile | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/math/yacas/Makefile b/math/yacas/Makefile index 25a474240e24..a6c858055ef1 100644 --- a/math/yacas/Makefile +++ b/math/yacas/Makefile @@ -30,6 +30,12 @@ OPTIONS= X11 "Build with X11 features" off \ .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif +.endif + .if defined(WITH_GMP) LIB_DEPENDS+= gmp.7:${PORTSDIR}/math/libgmp4 CONFIGURE_ARGS+= --with-numlib=gmp |