diff options
-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> |