Shawn wrote: > Matt, > > Following your recommendation I followed the INSTALL instructions and > had CSPAN make these modules to latest versions > > Net::Ping > Net::DNS > Time::HiRes > Digest::SHA1 > Getopt::Long > File::Copy > Digest::Nilsimsa > URI::Escape > > In the INSTALL it mentions I need to set an environment variable > PER5LIB: > > setenv PERL5LIB /home/user/myperl/lib > > but that directory doesn't exist on my system. I'm unsure how to > proceed from here.
I have been following this thread for a while; but, really guys, you should not have to mess with your PERL5LIB path at all. Perl knows where its libraries are (in @INC). If Perl cannot find some of its own libraries, then you probably screwed up your environment (such as mixing two different versions of Perl: for example, the one in the base system, and a newer one). The "Digest::SHA1 object version 2.01 does not match" error seems to point in that direction. So, first things first. 1): Call Makefile.pl with the full Perl-path; like "/usr/local/bin/perl Makefile.pl". I always do that (as I have, in fact, two different versions of Perl on my system: one with ithreads, the other not). 2): Check your package base; you can do that by running the program below (straight from the FAQ). That, at least, will give you an indication what is really installed under what Perl. - Mark System Administrator Asarian-host.org --- "If you were supposed to understand it, we wouldn't call it code." - FedEx ----------------- #!/usr/local/bin/perl print "\nPackages installed for /usr/local/bin/perl:\n\n"; use ExtUtils::Installed; my $instmod = ExtUtils::Installed -> new(); foreach my $module ($instmod -> modules()) { my $version = $instmod -> version($module) || "???"; print "$module -- $version\n"; } print "\n"; exit 0; ------------------------------------------------------- This SF.Net email is sponsored by: Sybase ASE Linux Express Edition - download now for FREE LinuxWorld Reader's Choice Award Winner for best database on Linux. http://ads.osdn.com/?ad_id=5588&alloc_id=12065&op=click _______________________________________________ Razor-users mailing list [EMAIL PROTECTED] https://lists.sourceforge.net/lists/listinfo/razor-users