rimmern has asked for the wisdom of the Perl Monks concerning the following question:
. However, when I try to use the module using any of the following methods I get error messages.
1. #!/usr/bin/perl -w -I/usr/lib/crypt/blowfish
2. use lib ("Blowfish", "c:\PERL\lib\crypt\blowfish");
3. use lib ("c:\PERL\lib\crypt\blowfish\blowfish.pl");
4. BEGIN { push @INC, "/usr/lib/crypt/blowfish" || die("Can't import blowfish module into INC listing!\n"); }
(and 4. doesnt produce an error message). The errors I do get are like:
C:\perl\bin>perl blowfish.pl
Can't locate Blowfish/Blowfish.pm in @INC (@INC contains: c:\PERL\lib\crypt\blow
fish\blowfish.pl C:\PERL\lib\site C:\PERL\lib c:\perl\lib c:\perl\lib\site c:\pe
rl\lib\site .) at blowfish.pl line 18.
BEGIN failed--compilation aborted at blowfish.pl line 18.
Does anyone have any ideas ?
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: blowfish module problem
by DamnDirtyApe (Curate) on May 31, 2002 at 06:40 UTC | |
by rimmern (Acolyte) on May 31, 2002 at 07:05 UTC | |
by dwiz (Pilgrim) on May 31, 2002 at 07:15 UTC | |
|
Re: blowfish module problem
by Steve_p (Priest) on May 31, 2002 at 12:34 UTC | |
|
Re: blowfish module problem
by alien_life_form (Pilgrim) on May 31, 2002 at 12:59 UTC | |
|
Re: blowfish module problem
by moodster (Hermit) on May 31, 2002 at 11:30 UTC | |
|
Re: blowfish module problem
by oakbox (Chaplain) on May 31, 2002 at 21:13 UTC |