in reply to Strange issues with mod_perl and use lib

Farenji,

I have a large perl app with several years worth of a few dozen coder's work in it. I often see this in the code:
my $package = "Some::Package" ; eval "require $package" ;

It drives me ape when I see this. They forgot a key part. It should look like this:
my $package = "Some::Package" ; eval "require $package" ; warn $@ if $@ ;
The point is: this will work for you to include your libs at runtime.

Peace, monks.
Bro. Doug :wq