On Jul 14, 2004, at 5:32 PM, Geoffrey Young wrote:
you shouldn't have needed that - those are all defined in modperl_inc.pl IIRC.
I used to need to do that in order to test XS modules and other such things
that would require those directories prior to loading extra.conf.in, then
came extra.last.conf.in, which is guaranteed to load after mod_perl twiddles
@INC, which solved all my problems (and hopefully yours too :)
Ah, interesting. I needed them at one time, but it was a long time ago that I wrote that code. I just changed it to:
<Perl> use File::Spec::Functions qw(catdir); use lib catdir '@ServerRoot@', 'lib'; </Perl>
And all tests passed. If I require the next version of Apache::Test, I guess I'll be able to get rid of that, too, eh?
Regards,
David