diff options
author | kris <kris@FreeBSD.org> | 2004-02-06 10:34:53 +0800 |
---|---|---|
committer | kris <kris@FreeBSD.org> | 2004-02-06 10:34:53 +0800 |
commit | 8e7f203eb33793b3114aa92ca031adf000d20bd2 (patch) | |
tree | 15f8bfa351910f8cc5da0d84ae4a9ce80d1783b6 /www/wml | |
parent | faa1b6ce7eecf0ac3499a8a3bb3bfccb9569515c (diff) | |
download | freebsd-ports-graphics-8e7f203eb33793b3114aa92ca031adf000d20bd2.tar.gz freebsd-ports-graphics-8e7f203eb33793b3114aa92ca031adf000d20bd2.tar.zst freebsd-ports-graphics-8e7f203eb33793b3114aa92ca031adf000d20bd2.zip |
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 344eba82a2a..c05a908b596 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> |