diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 09:44:46 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 09:44:46 +0000 |
commit | 0d4bfc3ef274ff3bd8ecdabcf580c34756465f8a (patch) | |
tree | fd8b6b83cb1bde0b53be897e83495cc38d6bd38b | |
parent | f4954eadbfd41a5fd00a7092ac959f255c413e17 (diff) | |
download | ports-0d4bfc3ef274ff3bd8ecdabcf580c34756465f8a.tar.gz ports-0d4bfc3ef274ff3bd8ecdabcf580c34756465f8a.zip |
Mark as broken with gcc4.2 on 64-bit archs.
Notes
Notes:
svn path=/head/; revision=200535
-rw-r--r-- | mail/mahogany/Makefile | 6 | ||||
-rw-r--r-- | math/kaskade/Makefile | 10 |
2 files changed, 15 insertions, 1 deletions
diff --git a/mail/mahogany/Makefile b/mail/mahogany/Makefile index 56e35d319edc..acfdd4ddc33c 100644 --- a/mail/mahogany/Makefile +++ b/mail/mahogany/Makefile @@ -29,6 +29,12 @@ MAN1= M.1 mahogany.1 .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(WITHOUT_NLS) USE_GETTEXT= yes PLIST_SUB+= NLS="" 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> |