> /home/jason/lib64/perl5/site_perl/5.8.0/mod_perl.pm > $mod_perl::VERSION = "1.29"; > $class->UNIVERSAL::VERSION(shift); > > I'll probably reinstall that in ~/apache to clean things up. Anyways, I > tried Geoffrey's suggestion based on this new information, but it still > doesn't see it: > > [EMAIL PROTECTED] libapreq-1.33]$ PERL5LIB=~/lib64 perl Makefile.PL > PREFIX=~/perl > mod_perl 1.x ( < 1.99) is required at Makefile.PL line 34. > BEGIN failed--compilation aborted at Makefile.PL line 36.
you'll need to ajust PERL5LIB so that it works. I suspect it would be $ PERL5LIB=~/lib64/perl5/ perl Makefile.PL at any rate, you can check what @INC looks like by just doing $ PERL5LIB=~/somelib perl -V and adjust PERL5LIB until you get /home/jason/lib64/perl5/site_perl/5.8.0/ in there - I think /home/jason/lib64/perl5/ should be sufficient to pull in the site_lib and beyond, but you'll need to experiment until you get mod_perl.pm in @INC. --Geoff