Date: Thu, 26 Nov 2009 17:33:53 -0200 From: "Rodrigo Mosconi (perl)" <perl@mosconi.mat.br> To: perl@freebsd.org Subject: Ports patch/update (p5-log-Dispatch) Message-ID: <50ca7c1c0911261133g44fcb3beyc48c5a46ebf14f81@mail.gmail.com>
next in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?50ca7c1c0911261133g44fcb3beyc48c5a46ebf14f81>