Ports patch/update (p5-log-Dispatch)

Rodrigo Mosconi (perl) perl at mosconi.mat.br
Thu Nov 26 20:01:13 UTC 2009


hi,

I would like to suggest a patch at Makefile of www/p5-Log-Dispatch to
match correctly with mod_perl2:

Change this

.if defined(WITH_APACHELOG)
.if defined(WITH_APACHE2)
RUN_DEPENDS+=   mod_perl>=2.0:${PORTSDIR}/www/mod_perl2
.else
RUN_DEPENDS+=   ${LOCALBASE}/libexec/apache/libperl.so:${PORTSDIR}/www/mod_perl
.endif
.endif

with this:

.if defined(WITH_APACHELOG)
.if ( defined(WITH_APACHE2) || defined(WITH_MODPERL2) )
RUN_DEPENDS+=   mod_perl2>=2.0:${PORTSDIR}/www/mod_perl2
.else
RUN_DEPENDS+=   ${LOCALBASE}/libexec/apache/libperl.so:${PORTSDIR}/www/mod_perl
.endif
.endif

thanks


More information about the freebsd-perl mailing list