diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 17:44:46 +0800 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 17:44:46 +0800 |
commit | 0d4bfc3ef274ff3bd8ecdabcf580c34756465f8a (patch) | |
tree | fd8b6b83cb1bde0b53be897e83495cc38d6bd38b /math/kaskade | |
parent | f4954eadbfd41a5fd00a7092ac959f255c413e17 (diff) | |
download | freebsd-ports-gnome-0d4bfc3ef274ff3bd8ecdabcf580c34756465f8a.tar.gz freebsd-ports-gnome-0d4bfc3ef274ff3bd8ecdabcf580c34756465f8a.tar.zst freebsd-ports-gnome-0d4bfc3ef274ff3bd8ecdabcf580c34756465f8a.zip |
Mark as broken with gcc4.2 on 64-bit archs.
Diffstat (limited to 'math/kaskade')
-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 cee8aafca812..eccf795d8240 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> |