aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mail/mahogany/Makefile6
-rw-r--r--math/kaskade/Makefile10
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>