svn commit: r415609 - head/www/mod_perl2

Olli Hauer ohauer at FreeBSD.org
Sat May 21 19:38:24 UTC 2016


Author: ohauer
Date: Sat May 21 19:38:23 2016
New Revision: 415609
URL: https://svnweb.freebsd.org/changeset/ports/415609

Log:
  - mod_perl works only with perl >= 5.22,
    refelct this in the ${PERL_VER} check!
  
  Reported by:	Daniel Mafua <daniel.mafua_at_dempseyuniform.com>

Modified:
  head/www/mod_perl2/Makefile

Modified: head/www/mod_perl2/Makefile
==============================================================================
--- head/www/mod_perl2/Makefile	Sat May 21 19:29:21 2016	(r415608)
+++ head/www/mod_perl2/Makefile	Sat May 21 19:38:23 2016	(r415609)
@@ -32,7 +32,7 @@ PLIST_SUB+=	APMOD_FILE=${APMOD_FILE}
 
 .include <bsd.port.pre.mk>
 
-.if ${PERL_VER} == 5.22
+.if ${PERL_VER} >= 5.22
 BROKEN=		PERL ${PERL_VER} is not supported by upstream,\
 		see http://svn.apache.org/viewvc/perl/modperl/trunk/README?view=markup
 .endif


More information about the svn-ports-head mailing list