in reply to Problem locating Carp::Heavy
um... you're missing Carp::Heavy?
When you 'use Carp;', which a whole lot of modules do (such as DBI), it loads some lightweight functions. If you call one of those functions, they then do 'require Carp::Heavy;' to do the actual work. (so the bulky part of the code doesn't get loaded until it's really needed.)
Once you have Carp::Heavy installed (which I would have expected to be at /usr/lib/perl5/5.8.6/Carp/Heavy.pm based on the message given), it should give you a message telling you what went wrong that caused Carp to be called.
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^2: Problem locating Carp::Heavy
by Miguel (Friar) on Apr 07, 2005 at 01:58 UTC | |
by jhourcle (Prior) on Apr 07, 2005 at 02:31 UTC |