in reply to Understanding and building modules
Note that your module need to be in some @INC path. To see what directories your Perl interpreter is lookin for modules, get the output of this code:use Mapps::Auth ; $auth = new Mapps::Auth->auth($uname, $passwd); ...
Here the output is:foreach my $INC_i ( @INC ) { print "$INC_i\n" ; }
C:/Perl/lib C:/Perl/site/lib .
Graciliano M. P.
"Creativity is the expression of the liberty".
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Undertanding and building modules
by neilwatson (Priest) on Apr 03, 2004 at 21:24 UTC | |
by peanut (Novice) on Apr 03, 2004 at 22:27 UTC |