diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-10-02 05:58:52 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-10-02 05:58:52 +0000 |
commit | 3ec5f78de50e205518417624a882324622c8312c (patch) | |
tree | e2ab8d10ce620dc064b38959aa54f84080c269fc | |
parent | Mark as broken with gcc4.2. (diff) |
Mark as broken with gcc4.2 on 64-bit archs.
-rw-r--r-- | devel/xlslib/Makefile | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/devel/xlslib/Makefile b/devel/xlslib/Makefile index 7801d6ef9e97..dc3690c3afe3 100644 --- a/devel/xlslib/Makefile +++ b/devel/xlslib/Makefile @@ -23,4 +23,12 @@ post-patch: @${REINPLACE_CMD} -e 's|^\(SUBDIRS.*src\).*|\1|' \ ${WRKSRC}/Makefile.in -.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> |