> I still having problem with this extra.last.conf.in.
> Please, if you want and have time, take a look to included TGZ stub package
> (I included in cause is small and, maybe, make clear my problem).
> TIA
> 
> 

YEAH!!!! finally, a user that submits a nice sample tarball for me to just
run!!!  other users take note: making it easier for developers to help solve
your problems makes it more likely that your problems get solved.  besides,
getting familiar with Apache-Test will help you in the long run :)

in this case it was easy: you only need one of extra.last.conf.in or
extra.conf.in.  the former is loaded last after @INC is finalized, which is
what you want for PerlLoadModule (as well as any modules that use XS).
since both of your extra* files have the PerlLoadModule directive in them,
the first wins and throws the error.  so, I copied your extra.conf.in to
extra.last.conf.in, removed extra.conf.in, and it worked.

well, almost.  you should always add 'use Apache2;' to your Makefile.PL - it
does no harm if it's there and you don't need it, while making it possible
for all mod_perl 2.0 configurations to run your stuff out-of-the-box.

anyway, I'm glad Apache-Test is helping you.  good luck.

--Geoff


-- 
Reporting bugs: http://perl.apache.org/bugs/
Mail list info: http://perl.apache.org/maillist/modperl.html

Reply via email to