diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-01 17:25:49 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-01 17:25:49 +0800 |
commit | 4255ddc3ad9636d0b862d813a2910fc20e6e30dd (patch) | |
tree | ed564a329d1a0df77bf43b7dafe35d65ea8b21b1 /math | |
parent | 035617b276afd846f5b0799ea25f68cab47accc2 (diff) | |
download | freebsd-ports-gnome-4255ddc3ad9636d0b862d813a2910fc20e6e30dd.tar.gz freebsd-ports-gnome-4255ddc3ad9636d0b862d813a2910fc20e6e30dd.tar.zst freebsd-ports-gnome-4255ddc3ad9636d0b862d813a2910fc20e6e30dd.zip |
Mark as broken with gcc4.2 on 64-bit archs.
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 |