diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-02 09:01:57 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-02 09:01:57 +0800 |
commit | 91e079d51332e587e9cdd5c0942876ea5736990d (patch) | |
tree | 69b1fc37ffc51bc56c9502b6c5e4792c614dad16 /lang | |
parent | 816517e4bd2d268cfe29d4887418d56cbb133e9a (diff) | |
download | freebsd-ports-gnome-91e079d51332e587e9cdd5c0942876ea5736990d.tar.gz freebsd-ports-gnome-91e079d51332e587e9cdd5c0942876ea5736990d.tar.zst freebsd-ports-gnome-91e079d51332e587e9cdd5c0942876ea5736990d.zip |
Mark as broken on gcc4.2 on 64-bit archs. Build status on i386 unknown.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/maude/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/lang/maude/Makefile b/lang/maude/Makefile index 67bcbb14b93e..9c62d2383ad5 100644 --- a/lang/maude/Makefile +++ b/lang/maude/Makefile @@ -31,6 +31,10 @@ post-patch: .if ${OSVERSION} < 600000 BROKEN= does not compile on 4.X or 5.X +.elif ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" || ${ARCH} == "sparc64" +BROKEN= Does not compile with GCC 4.2 +.endif .endif .include <bsd.port.post.mk> |