diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-01 17:44:46 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-01 17:44:46 +0800 |
commit | 854debbcf03da120f64c11a8b2d56ffa770a51f9 (patch) | |
tree | 8d2e9330587ec768ac8e03d0806120d5a45cb14e /math | |
parent | fcdd7d4aff17be8ac9c417ce2f4269755749225d (diff) | |
download | freebsd-ports-graphics-854debbcf03da120f64c11a8b2d56ffa770a51f9.tar.gz freebsd-ports-graphics-854debbcf03da120f64c11a8b2d56ffa770a51f9.tar.zst freebsd-ports-graphics-854debbcf03da120f64c11a8b2d56ffa770a51f9.zip |
Mark as broken with gcc4.2 on 64-bit archs.
Diffstat (limited to 'math')
-rw-r--r-- | math/kaskade/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/math/kaskade/Makefile b/math/kaskade/Makefile index cee8aafca81..eccf795d824 100644 --- a/math/kaskade/Makefile +++ b/math/kaskade/Makefile @@ -46,4 +46,12 @@ post-install: ${INSTALL_DATA} ${WRKSRC}/data/*.mat ${EXAMPLESDIR} .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif +.endif + +.include <bsd.port.post.mk> |