diff options
author | linimon <linimon@FreeBSD.org> | 2007-10-01 15:44:31 +0800 |
---|---|---|
committer | linimon <linimon@FreeBSD.org> | 2007-10-01 15:44:31 +0800 |
commit | 791db9f3db19fe7d04832303d99ad239086abbe1 (patch) | |
tree | 5575d4ff5243301cdb5c3b7b37f66b8398083009 /net | |
parent | 611dbf56f24cc54e48c0729fca023dd94db803cb (diff) | |
download | freebsd-ports-gnome-791db9f3db19fe7d04832303d99ad239086abbe1.tar.gz freebsd-ports-gnome-791db9f3db19fe7d04832303d99ad239086abbe1.tar.zst freebsd-ports-gnome-791db9f3db19fe7d04832303d99ad239086abbe1.zip |
Mark as broken on gcc4.2 with 64-bit archs.
Diffstat (limited to 'net')
-rw-r--r-- | net/samba4wins/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/net/samba4wins/Makefile b/net/samba4wins/Makefile index 4b2169b6c684..c1e96b253357 100644 --- a/net/samba4wins/Makefile +++ b/net/samba4wins/Makefile @@ -73,4 +73,12 @@ post-install: . endfor .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> |