diff options
-rw-r--r-- | devel/gdb53-act/Makefile | 4 | ||||
-rw-r--r-- | multimedia/dirac/Makefile | 8 |
2 files changed, 11 insertions, 1 deletions
diff --git a/devel/gdb53-act/Makefile b/devel/gdb53-act/Makefile index 80096b164e2f..c2cca1fbbcf0 100644 --- a/devel/gdb53-act/Makefile +++ b/devel/gdb53-act/Makefile @@ -29,6 +29,10 @@ CONFIGURE_ARGS+= --disable-nls BROKEN= "Does not compile on !i386 and !alpha" .endif +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on 4.x" +.endif + pre-configure: cd ${WRKSRC} ; ${RM} -rf dejagnu expect sim tcl texinfo diff --git a/multimedia/dirac/Makefile b/multimedia/dirac/Makefile index 537fcde0e6c0..e91bcaf5d5be 100644 --- a/multimedia/dirac/Makefile +++ b/multimedia/dirac/Makefile @@ -27,4 +27,10 @@ CONFIGURE_ENV+= CXXFLAGS=-I${LOCALBASE}/include NOMAN= defined -.include <bsd.port.mk> +.include <bsd.port.pre.mk> + +.if ${OSVERSION} < 500000 +BROKEN= "Does not compile on 4.x" +.endif + +.include <bsd.port.post.mk> |