diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2006-04-20 20:04:59 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2006-04-20 20:04:59 +0000 |
commit | 81c058d6c4116d879d691a2028a77bda2020f0fd (patch) | |
tree | a1e7feecf302c1a3a8131a1f76e209b05035992f | |
parent | Try to fix build on 4.x. (diff) |
Go the coward way and mark IGNORE for perl < 5.6.0
Submitted by: pointyhat via kris
Notes
Notes:
svn path=/head/; revision=160040
-rw-r--r-- | www/p5-CGI-Session/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/www/p5-CGI-Session/Makefile b/www/p5-CGI-Session/Makefile index af6eeb1f715d..21baa0555845 100644 --- a/www/p5-CGI-Session/Makefile +++ b/www/p5-CGI-Session/Makefile @@ -40,7 +40,9 @@ MAN3= \ .include <bsd.port.pre.mk> -.if ${PERL_LEVEL} < 500800 +.if ${PERL_LEVEL} < 500600 +IGNORE= requires perl 5.6.0 or higher. Please install lang/perl5.8 and try again +.elif ${PERL_LEVEL} < 500800 BUILD_DEPENDS= ${SITE_PERL}/${PERL_ARCH}/Digest/MD5.pm:${PORTSDIR}/security/p5-Digest-MD5 RUN_DEPENDS= ${BUILD_DEPENDS} .endif |