diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2009-12-21 13:01:09 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2009-12-21 13:01:09 +0000 |
commit | 32090b9f3dd7200ac71716646774a243bb7554fd (patch) | |
tree | 4d071207a5e1a1313df9d50c9d3e8b8bf76544f4 | |
parent | 0cc021c8e9c9c89c632b24ae21d999d3f3664616 (diff) |
Notes
-rw-r--r-- | mail/tkrat2/Makefile | 2 | ||||
-rw-r--r-- | net/skystar2/Makefile | 2 | ||||
-rw-r--r-- | net/ttbudget/Makefile | 2 | ||||
-rw-r--r-- | www/mod_dtcl/Makefile | 4 |
4 files changed, 10 insertions, 0 deletions
diff --git a/mail/tkrat2/Makefile b/mail/tkrat2/Makefile index cf5f7c892c9d..d62404787c45 100644 --- a/mail/tkrat2/Makefile +++ b/mail/tkrat2/Makefile @@ -38,6 +38,8 @@ MAN1= tkrat.1 .if ${ARCH} == "sparc64" BROKEN= Build fails on sparc64 +.elif ${OSVERSION} >= 900000 +BROKEN= does not build .endif post-install: diff --git a/net/skystar2/Makefile b/net/skystar2/Makefile index 71af0be9c728..5c8e241f1368 100644 --- a/net/skystar2/Makefile +++ b/net/skystar2/Makefile @@ -53,6 +53,8 @@ post-install: .if ${ARCH} == "sparc64" BROKEN= Does not compile on sparc64 +.elif ${OSVERSION} >= 900000 +BROKEN= does not build .endif .include <bsd.port.post.mk> diff --git a/net/ttbudget/Makefile b/net/ttbudget/Makefile index 7e9443d53e29..e5e1476fe08f 100644 --- a/net/ttbudget/Makefile +++ b/net/ttbudget/Makefile @@ -36,6 +36,8 @@ post-install: .if ${ARCH} == "sparc64" BROKEN= Does not compile on sparc64 +.elif ${OSVERSION} >= 900000 +BROKEN= does not build .endif .include <bsd.port.post.mk> diff --git a/www/mod_dtcl/Makefile b/www/mod_dtcl/Makefile index f5ecf2295d09..5796375165e5 100644 --- a/www/mod_dtcl/Makefile +++ b/www/mod_dtcl/Makefile @@ -24,6 +24,10 @@ MAKE_ENV+= TCL_VERSION=${TCL_VER} .include <bsd.port.pre.mk> +.if ${OSVERSION} >= 900000 +BROKEN= does not build +.endif + do-install: ${INSTALL_DATA} ${WRKSRC}/libmod_dtcl.so.1* \ ${PREFIX}/libexec/apache/mod_dtcl.so |