diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 07:29:49 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-10-01 07:29:49 +0000 |
commit | 0ee6cbac801a3afccb5a772b6c9f00461bd120c5 (patch) | |
tree | 386062b945e97d3bb82785bb0a04085c7012f4c1 | |
parent | Mark as broken with gcc4.2. (diff) |
Mark as broken with gcc4.2 on amd64.
Notes
Notes:
svn path=/head/; revision=200504
-rw-r--r-- | net/versuch/Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/net/versuch/Makefile b/net/versuch/Makefile index 31c7f60fa7e5..a095254d7f96 100644 --- a/net/versuch/Makefile +++ b/net/versuch/Makefile @@ -29,8 +29,10 @@ GNU_CONFIGURE= yes .include <bsd.port.pre.mk> -.if ${OSVERSION} < 500000 -IGNORE= does not find pthread libraries on 4.x +.if ${OSVERSION} >= 700042 +.if ${ARCH} == "amd64" +BROKEN= Does not compile with GCC 4.2 +.endif .endif .include <bsd.port.post.mk> |