diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-02 16:59:47 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-02 16:59:47 +0800 |
commit | cafa7d4736fb2dfb4c78deab713adf86549fd9b8 (patch) | |
tree | 7dcb6cdb2202cb56370bd8fff234745bdb8917b3 /comms | |
parent | 4af0868db05dcd5641087181482e75893965cfad (diff) | |
download | freebsd-ports-gnome-cafa7d4736fb2dfb4c78deab713adf86549fd9b8.tar.gz freebsd-ports-gnome-cafa7d4736fb2dfb4c78deab713adf86549fd9b8.tar.zst freebsd-ports-gnome-cafa7d4736fb2dfb4c78deab713adf86549fd9b8.zip |
Mark as broken with gcc4.2 on 64-bit archs.
Diffstat (limited to 'comms')
-rw-r--r-- | comms/twpsk/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/comms/twpsk/Makefile b/comms/twpsk/Makefile index eaa86d8f9bf5..3d7e3b18093e 100644 --- a/comms/twpsk/Makefile +++ b/comms/twpsk/Makefile @@ -36,4 +36,12 @@ post-patch: ${WRKSRC}/${file} .endfor -.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> |