diff options
author | Kris Kennaway <kris@FreeBSD.org> | 2004-02-06 02:34:53 +0000 |
---|---|---|
committer | Kris Kennaway <kris@FreeBSD.org> | 2004-02-06 02:34:53 +0000 |
commit | e600914c4fa20b94eb4bb7052bfb68a2872515a4 (patch) | |
tree | 6eb21776b896f6bc21ee3022f5bd6414208b1f3e /www/wml | |
parent | update to 0.95 (diff) |
BROKEN: Does not compile with perl >=5.8
Diffstat (limited to 'www/wml')
-rw-r--r-- | www/wml/Makefile | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/www/wml/Makefile b/www/wml/Makefile index 344eba82a2a1..c05a908b5962 100644 --- a/www/wml/Makefile +++ b/www/wml/Makefile @@ -49,6 +49,12 @@ CAT7= wml_barebone.7 \ MAN7= wml_intro.7 wml_macros.7 wml_tutorial.7 wml_faq.7 wml_tags.7 +.include <bsd.port.pre.mk> + +.if ${PERL_LEVEL} >= 500800 +BROKEN= "Does not compile with perl >=5.8" +.endif + # catpages are usually not installed, so they are not compressed. # But they are really needed as docs, so we compress manually... .if !defined(NOMANCOMPRESS) @@ -67,4 +73,4 @@ post-build: test: @cd ${WRKSRC} && ${MAKE} test -.include <bsd.port.mk> +.include <bsd.port.post.mk> |