diff options
author | Mark Linimon <linimon@FreeBSD.org> | 2007-10-02 05:56:42 +0000 |
---|---|---|
committer | Mark Linimon <linimon@FreeBSD.org> | 2007-10-02 05:56:42 +0000 |
commit | 87ec31cf9f7e46dc0094480b3b7bdae9960e5cf1 (patch) | |
tree | e3651f8ffcd7ebb58b8a4c7ad1b5138132953e76 | |
parent | Mark as broken with gcc4.2 on 64-bit archs. (diff) |
Mark as broken with gcc4.2.
Notes
Notes:
svn path=/head/; revision=200600
-rw-r--r-- | devel/z80-asm/Makefile | 8 | ||||
-rw-r--r-- | dns/sqldjbdns/Makefile | 8 |
2 files changed, 14 insertions, 2 deletions
diff --git a/devel/z80-asm/Makefile b/devel/z80-asm/Makefile index 6e07f1724f32..9c312b94b1c9 100644 --- a/devel/z80-asm/Makefile +++ b/devel/z80-asm/Makefile @@ -21,4 +21,10 @@ MANCOMPRESSED= no USE_GMAKE= yes GNU_CONFIGURE= yes -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + +.include <bsd.port.post.mk> diff --git a/dns/sqldjbdns/Makefile b/dns/sqldjbdns/Makefile index 1bdf0fdc0e7e..506f23fcac01 100644 --- a/dns/sqldjbdns/Makefile +++ b/dns/sqldjbdns/Makefile @@ -42,4 +42,10 @@ post-install: .endfor .endif -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} >= 700042 +BROKEN= Does not compile with GCC 4.2 +.endif + +.include <bsd.port.post.mk> |