Michael Ellery wrote:
> Michael Ellery wrote:
>> I've been under the impression that Getopt::Long is included with most 
>> (if not all) distributions of perl.  Recently I've encountered a few 
>> Activestate versions that don't seem to have it installed.  What the 
>> current policy with this package - is it included?  As of which version 
>> did it become standard?
>>
> 
> ..and it gets worse.  For those versions that seem to have Getopt::Long 
> but that don't have the minimum version I require (2.36), I've tried 
> installing the latest (using ppm), but at runtime perl always loads the 
> "builtin" version and not my upgraded version in site/lib.  Any ideas 
> how I can fix this?

I have version 2.37 in my site/lib (not sure if that's usable or not).

Try posting the output of this script:

use strict;
use warnings;
use Getopt::Long;

print "$_\n" foreach @INC; print "\n";

print "$_ => $INC{$_}\n" foreach keys %INC;

__END__
_______________________________________________
ActivePerl mailing list
ActivePerl@listserv.ActiveState.com
To unsubscribe: http://listserv.ActiveState.com/mailman/mysubs

Reply via email to