1 package Module::CoreList;
3 use vars qw/$VERSION %released %version %families %upstream
4 %bug_tracker %deprecated/;
9 Module::CoreList - what modules shipped with versions of perl
15 print $Module::CoreList::version{5.00503}{CPAN}; # prints 1.48
17 print Module::CoreList->first_release('File::Spec'); # prints 5.00405
18 print Module::CoreList->first_release_by_date('File::Spec'); # prints 5.005
19 print Module::CoreList->first_release('File::Spec', 0.82); # prints 5.006001
21 print join ', ', Module::CoreList->find_modules(qr/Data/);
22 # prints 'Data::Dumper'
23 print join ', ', Module::CoreList->find_modules(qr/test::h.*::.*s/i, 5.008008);
24 # prints 'Test::Harness::Assert, Test::Harness::Straps'
26 print join ", ", @{ $Module::CoreList::families{5.005} };
27 # prints "5.005, 5.00503, 5.00504"
31 Module::CoreList provides information on which core and dual-life modules shipped
32 with each version of L<perl>.
34 It provides a number of mechanisms for querying this information.
36 There is a utility called L<corelist> provided with this module
37 which is a convenient way of querying from the command-line.
39 There is a functional programming API available for programmers to query
42 Programmers may also query the contained hash structures to find relevant
47 These are the functions that are available, they may either be called as functions or class methods:
49 Module::CoreList::first_release('File::Spec'); # as a function
51 Module::CoreList->first_release('File::Spec'); # class method
55 =item C<first_release( MODULE )>
57 Behaviour since version 2.11
59 Requires a MODULE name as an argument, returns the perl version when that module first
60 appeared in core as ordered by perl version number or undef if that module is not in core.
62 =item C<first_release_by_date( MODULE )>
64 Requires a MODULE name as an argument, returns the perl version when that module first
65 appeared in core as ordered by release date or undef if that module is not in core.
67 =item C<find_modules( REGEX, [ LIST OF PERLS ] )>
69 Takes a regex as an argument, returns a list of modules that match the regex given.
70 If only a regex is provided applies to all modules in all perl versions. Optionally
71 you may provide a list of perl versions to limit the regex search.
73 =item C<find_version( PERL_VERSION )>
75 Takes a perl version as an argument. Returns that perl version if it exists or C<undef>
78 =item C<is_deprecated( MODULE, PERL_VERSION )>
80 Available in version 2.22 and above.
82 Returns true if MODULE is marked as deprecated in PERL_VERSION. If PERL_VERSION is
83 omitted, it defaults to the current version of Perl.
85 =item C<removed_from( MODULE )>
87 Available in version 2.32 and above
89 Takes a module name as an argument, returns the first perl version where that module
90 was removed from core. Returns undef if the given module was never in core or remains
93 =item C<removed_from_by_date( MODULE )>
95 Available in version 2.32 and above
97 Takes a module name as an argument, returns the first perl version by release date where that module
98 was removed from core. Returns undef if the given module was never in core or remains
103 =head1 DATA STRUCTURES
105 These are the hash data structures that are available:
109 =item C<%Module::CoreList::version>
111 A hash of hashes that is keyed on perl version as indicated
112 in $]. The second level hash is module => version pairs.
114 Note, it is possible for the version of a module to be unspecified,
115 whereby the value is C<undef>, so use C<exists $version{$foo}{$bar}> if
116 that's what you're testing for.
118 Starting with 2.10, the special module name C<Unicode> refers to the version of
119 the Unicode Character Database bundled with Perl.
121 =item C<%Module::CoreList::released>
123 Keyed on perl version this contains ISO
124 formatted versions of the release dates, as gleaned from L<perlhist>.
126 =item C<%Module::CoreList::families>
128 New, in 1.96, a hash that
129 clusters known perl releases by their major versions.
131 =item C<%Module::CoreList::deprecated>
133 A hash of hashes keyed on perl version and on module name.
134 If a module is defined it indicates that that module is
135 deprecated in that perl version and is scheduled for removal
136 from core at some future point.
138 =item C<%Module::CoreList::upstream>
140 A hash that contains information on where patches should be directed
141 for each core module.
143 UPSTREAM indicates where patches should go. C<undef> implies
144 that this hasn't been discussed for the module at hand.
145 C<blead> indicates that the copy of the module in the blead
146 sources is to be considered canonical, C<cpan> means that the
147 module on CPAN is to be patched first. C<first-come> means
148 that blead can be patched freely if it is in sync with the
149 latest release on CPAN.
151 =item C<%Module::CoreList::bug_tracker>
153 A hash that contains information on the appropriate bug tracker
154 for each core module.
156 BUGS is an email or url to post bug reports. For modules with
157 UPSTREAM => 'blead', use perl5-porters@perl.org. rt.cpan.org
158 appears to automatically provide a URL for CPAN modules; any value
159 given here overrides the default:
160 http://rt.cpan.org/Public/Dist/Display.html?Name=$ModuleName
166 Module::CoreList currently covers the 5.000, 5.001, 5.002, 5.003_07,
167 5.004, 5.004_05, 5.005, 5.005_03, 5.005_04, 5.6.0, 5.6.1, 5.6.2, 5.7.3,
168 5.8.0, 5.8.1, 5.8.2, 5.8.3, 5.8.4, 5.8.5, 5.8.6, 5.8.7, 5.8.8, 5.8.9,
169 5.9.0, 5.9.1, 5.9.2, 5.9.3, 5.9.4, 5.9.5, 5.10.0, 5.10.1, 5.11.0, 5.11.1,
170 5.11.2, 5.11.3, 5.11.4, 5.11.5, 5.12.0, 5.12.1, 5.12.2, 5.12.3, 5.13.0,
171 5.13.1, 5.13.2, 5.13.3, 5.13.4, 5.13.5, 5.13.6, 5.13.7 and 5.13.8
176 Moved to Changes file.
180 Richard Clamp E<lt>richardc@unixbeard.netE<gt>
182 Currently maintained by the perl 5 porters E<lt>perl5-porters@perl.orgE<gt>.
186 Copyright (C) 2002-2009 Richard Clamp. All Rights Reserved.
188 This module is free software; you can redistribute it and/or modify it
189 under the same terms as Perl itself.
193 L<corelist>, L<Module::Info>, L<perl>
200 my $what = shift || '';
201 if ($what eq 'dumpinc') {
207 print "---INC---\n", join "\n" => keys %INC
212 sub first_release_raw {
214 $module = shift if $module->isa(__PACKAGE__)
215 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
219 ? grep { exists $version{$_}{ $module } &&
220 $version{$_}{ $module } ge $version } keys %version
221 : grep { exists $version{$_}{ $module } } keys %version;
226 sub first_release_by_date {
227 my @perls = &first_release_raw;
228 return unless @perls;
229 return (sort { $released{$a} cmp $released{$b} } @perls)[0];
233 my @perls = &first_release_raw;
234 return unless @perls;
235 return (sort { $a cmp $b } @perls)[0];
240 $regex = shift if $regex->isa(__PACKAGE__);
242 @perls = keys %version unless @perls;
246 while (my ($k, $v) = each %{$version{$_}}) {
247 $mods{$k}++ if $k =~ $regex;
250 return sort keys %mods
255 $v = shift if $v->isa(__PACKAGE__);
256 return $version{$v} if defined $version{$v};
262 $module = shift if $module->isa(__PACKAGE__)
263 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
264 my $perl_version = shift;
265 $perl_version ||= $];
266 return unless $module && exists $deprecated{$perl_version}{$module};
267 return $deprecated{$perl_version}{$module};
271 my @perls = &removed_raw;
275 sub removed_from_by_date {
276 my @perls = sort { $released{$a} cmp $released{$b} } &removed_raw;
282 $mod = shift if $mod->isa(__PACKAGE__)
283 and scalar @_ and $_[0] =~ m#\A[a-zA-Z_][0-9a-zA-Z_]*(?:(::|')[0-9a-zA-Z_]+)*\z#;
284 return unless my @perls = sort { $a cmp $b } first_release_raw($mod);
285 my $last = pop @perls;
286 my @removed = grep { $_ > $last } sort { $a cmp $b } keys %version;
290 # When things escaped.
291 # NB. If you put version numbers with trailing zeroes here, you
292 # should also add an alias for the numerical ($]) version; see
293 # just before the __END__ of this module.
295 5.000 => '1994-10-17',
296 5.001 => '1995-03-14',
297 5.002 => '1996-02-29',
298 5.00307 => '1996-10-10',
299 5.004 => '1997-05-15',
300 5.005 => '1998-07-22',
301 5.00503 => '1999-03-28',
302 5.00405 => '1999-04-29',
303 5.006 => '2000-03-22',
304 5.006001 => '2001-04-08',
305 5.007003 => '2002-03-05',
306 5.008 => '2002-07-19',
307 5.008001 => '2003-09-25',
308 5.009 => '2003-10-27',
309 5.008002 => '2003-11-05',
310 5.006002 => '2003-11-15',
311 5.008003 => '2004-01-14',
312 5.00504 => '2004-02-23',
313 5.009001 => '2004-03-16',
314 5.008004 => '2004-04-21',
315 5.008005 => '2004-07-19',
316 5.008006 => '2004-11-27',
317 5.009002 => '2005-04-01',
318 5.008007 => '2005-05-30',
319 5.009003 => '2006-01-28',
320 5.008008 => '2006-01-31',
321 5.009004 => '2006-08-15',
322 5.009005 => '2007-07-07',
323 5.010000 => '2007-12-18',
324 5.008009 => '2008-12-14',
325 5.010001 => '2009-08-22',
326 5.011000 => '2009-10-02',
327 5.011001 => '2009-10-20',
328 5.011002 => '2009-11-20',
329 5.011003 => '2009-12-20',
330 5.011004 => '2010-01-20',
331 5.011005 => '2010-02-20',
332 5.012000 => '2010-04-12',
333 5.013000 => '2010-04-20',
334 5.012001 => '2010-05-16',
335 5.013001 => '2010-05-20',
336 5.013002 => '2010-06-22',
337 5.013003 => '2010-07-20',
338 5.013004 => '2010-08-20',
339 5.012002 => '2010-09-06',
340 5.013005 => '2010-09-19',
341 5.013006 => '2010-10-20',
342 5.013007 => '2010-11-20',
343 5.013008 => '2010-12-20',
344 5.012003 => '2011-01-15',
347 for my $version ( sort { $a <=> $b } keys %released ) {
348 my $family = int ($version * 1000) / 1000;
349 push @{ $families{ $family }} , $version;
355 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
356 'AutoLoader' => undef, # lib/AutoLoader.pm
357 'AutoSplit' => undef, # lib/AutoSplit.pm
358 'Benchmark' => undef, # lib/Benchmark.pm
359 'Carp' => undef, # lib/Carp.pm
360 'Cwd' => undef, # lib/Cwd.pm
361 'DB_File' => undef, # ext/DB_File/DB_File.pm
362 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm
363 'English' => undef, # lib/English.pm
364 'Env' => undef, # lib/Env.pm
365 'Exporter' => undef, # lib/Exporter.pm
366 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm
367 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm
368 'File::Basename' => undef, # lib/File/Basename.pm
369 'File::CheckTree' => undef, # lib/File/CheckTree.pm
370 'File::Find' => undef, # lib/File/Find.pm
371 'FileHandle' => undef, # lib/FileHandle.pm
372 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm
373 'Getopt::Long' => undef, # lib/Getopt/Long.pm
374 'Getopt::Std' => undef, # lib/Getopt/Std.pm
375 'I18N::Collate' => undef, # lib/I18N/Collate.pm
376 'IPC::Open2' => undef, # lib/IPC/Open2.pm
377 'IPC::Open3' => undef, # lib/IPC/Open3.pm
378 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
379 'Math::BigInt' => undef, # lib/Math/BigInt.pm
380 'Math::Complex' => undef, # lib/Math/Complex.pm
381 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm
382 'Net::Ping' => undef, # lib/Net/Ping.pm
383 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm
384 'POSIX' => undef, # ext/POSIX/POSIX.pm
385 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm
386 'Search::Dict' => undef, # lib/Search/Dict.pm
387 'Shell' => undef, # lib/Shell.pm
388 'Socket' => undef, # ext/Socket/Socket.pm
389 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
390 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
391 'Term::Cap' => undef, # lib/Term/Cap.pm
392 'Term::Complete' => undef, # lib/Term/Complete.pm
393 'Test::Harness' => undef, # lib/Test/Harness.pm
394 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
395 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
396 'Text::Soundex' => undef, # lib/Text/Soundex.pm
397 'Text::Tabs' => undef, # lib/Text/Tabs.pm
398 'TieHash' => undef, # lib/TieHash.pm
399 'Time::Local' => undef, # lib/Time/Local.pm
400 'integer' => undef, # lib/integer.pm
401 'less' => undef, # lib/less.pm
402 'sigtrap' => undef, # lib/sigtrap.pm
403 'strict' => undef, # lib/strict.pm
404 'subs' => undef, # lib/subs.pm
408 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
409 'AutoLoader' => undef, # lib/AutoLoader.pm
410 'AutoSplit' => undef, # lib/AutoSplit.pm
411 'Benchmark' => undef, # lib/Benchmark.pm
412 'Carp' => undef, # lib/Carp.pm
413 'Cwd' => undef, # lib/Cwd.pm
414 'DB_File' => undef, # ext/DB_File/DB_File.pm
415 'DynaLoader' => undef, # ext/DynaLoader/DynaLoader.pm
416 'English' => undef, # lib/English.pm
417 'Env' => undef, # lib/Env.pm
418 'Exporter' => undef, # lib/Exporter.pm
419 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm
420 'ExtUtils::MakeMaker' => undef, # lib/ExtUtils/MakeMaker.pm
421 'ExtUtils::Manifest' => undef, # lib/ExtUtils/Manifest.pm
422 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm
423 'Fcntl' => undef, # ext/Fcntl/Fcntl.pm
424 'File::Basename' => undef, # lib/File/Basename.pm
425 'File::CheckTree' => undef, # lib/File/CheckTree.pm
426 'File::Find' => undef, # lib/File/Find.pm
427 'File::Path' => undef, # lib/File/Path.pm
428 'FileHandle' => undef, # lib/FileHandle.pm
429 'GDBM_File' => undef, # ext/GDBM_File/GDBM_File.pm
430 'Getopt::Long' => undef, # lib/Getopt/Long.pm
431 'Getopt::Std' => undef, # lib/Getopt/Std.pm
432 'I18N::Collate' => undef, # lib/I18N/Collate.pm
433 'IPC::Open2' => undef, # lib/IPC/Open2.pm
434 'IPC::Open3' => undef, # lib/IPC/Open3.pm
435 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
436 'Math::BigInt' => undef, # lib/Math/BigInt.pm
437 'Math::Complex' => undef, # lib/Math/Complex.pm
438 'NDBM_File' => undef, # ext/NDBM_File/NDBM_File.pm
439 'Net::Ping' => undef, # lib/Net/Ping.pm
440 'ODBM_File' => undef, # ext/ODBM_File/ODBM_File.pm
441 'POSIX' => undef, # ext/POSIX/POSIX.pm
442 'SDBM_File' => undef, # ext/SDBM_File/SDBM_File.pm
443 'Search::Dict' => undef, # lib/Search/Dict.pm
444 'Shell' => undef, # lib/Shell.pm
445 'Socket' => undef, # ext/Socket/Socket.pm
446 'SubstrHash' => undef, # lib/SubstrHash.pm
447 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
448 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
449 'Term::Cap' => undef, # lib/Term/Cap.pm
450 'Term::Complete' => undef, # lib/Term/Complete.pm
451 'Test::Harness' => undef, # lib/Test/Harness.pm
452 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
453 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
454 'Text::Soundex' => undef, # lib/Text/Soundex.pm
455 'Text::Tabs' => undef, # lib/Text/Tabs.pm
456 'TieHash' => undef, # lib/TieHash.pm
457 'Time::Local' => undef, # lib/Time/Local.pm
458 'integer' => undef, # lib/integer.pm
459 'less' => undef, # lib/less.pm
460 'lib' => undef, # lib/lib.pm
461 'sigtrap' => undef, # lib/sigtrap.pm
462 'strict' => undef, # lib/strict.pm
463 'subs' => undef, # lib/subs.pm
467 'AnyDBM_File' => undef, # lib/AnyDBM_File.pm
468 'AutoLoader' => undef, # lib/AutoLoader.pm
469 'AutoSplit' => undef, # lib/AutoSplit.pm
470 'Benchmark' => undef, # lib/Benchmark.pm
471 'Carp' => undef, # lib/Carp.pm
472 'Cwd' => undef, # lib/Cwd.pm
473 'DB_File' => '1.01', # ext/DB_File/DB_File.pm
474 'Devel::SelfStubber' => '1.01', # lib/Devel/SelfStubber.pm
475 'DirHandle' => undef, # lib/DirHandle.pm
476 'DynaLoader' => '1.00', # ext/DynaLoader/DynaLoader.pm
477 'English' => undef, # lib/English.pm
478 'Env' => undef, # lib/Env.pm
479 'Exporter' => undef, # lib/Exporter.pm
480 'ExtUtils::Install' => undef, # lib/ExtUtils/Install.pm
481 'ExtUtils::Liblist' => undef, # lib/ExtUtils/Liblist.pm
482 'ExtUtils::MM_OS2' => undef, # lib/ExtUtils/MM_OS2.pm
483 'ExtUtils::MM_Unix' => undef, # lib/ExtUtils/MM_Unix.pm
484 'ExtUtils::MM_VMS' => undef, # lib/ExtUtils/MM_VMS.pm
485 'ExtUtils::MakeMaker' => '5.21', # lib/ExtUtils/MakeMaker.pm
486 'ExtUtils::Manifest' => '1.22', # lib/ExtUtils/Manifest.pm
487 'ExtUtils::Mkbootstrap' => undef, # lib/ExtUtils/Mkbootstrap.pm
488 'ExtUtils::Mksymlists' => '1.00', # lib/ExtUtils/Mksymlists.pm
489 'Fcntl' => '1.00', # ext/Fcntl/Fcntl.pm
490 'File::Basename' => undef, # lib/File/Basename.pm
491 'File::CheckTree' => undef, # lib/File/CheckTree.pm
492 'File::Copy' => '1.5', # lib/File/Copy.pm
493 'File::Find' => undef, # lib/File/Find.pm
494 'File::Path' => '1.01', # lib/File/Path.pm
495 'FileCache' => undef, # lib/FileCache.pm
496 'FileHandle' => '1.00', # ext/FileHandle/FileHandle.pm
497 'GDBM_File' => '1.00', # ext/GDBM_File/GDBM_File.pm
498 'Getopt::Long' => '2.01', # lib/Getopt/Long.pm
499 'Getopt::Std' => undef, # lib/Getopt/Std.pm
500 'I18N::Collate' => undef, # lib/I18N/Collate.pm
501 'IPC::Open2' => undef, # lib/IPC/Open2.pm
502 'IPC::Open3' => undef, # lib/IPC/Open3.pm
503 'Math::BigFloat' => undef, # lib/Math/BigFloat.pm
504 'Math::BigInt' => undef, # lib/Math/BigInt.pm
505 'Math::Complex' => undef, # lib/Math/Complex.pm
506 'NDBM_File' => '1.00', # ext/NDBM_File/NDBM_File.pm
507 'Net::Ping' => '1', # lib/Net/Ping.pm
508 'ODBM_File' => '1.00', # ext/ODBM_File/ODBM_File.pm
509 'POSIX' => '1.00', # ext/POSIX/POSIX.pm
510 'Pod::Functions' => undef, # lib/Pod/Functions.pm
511 'Pod::Text' => undef, # lib/Pod/Text.pm
512 'SDBM_File' => '1.00', # ext/SDBM_File/SDBM_File.pm
513 'Safe' => '1.00', # ext/Safe/Safe.pm
514 'Search::Dict' => undef, # lib/Search/Dict.pm
515 'SelectSaver' => undef, # lib/SelectSaver.pm
516 'SelfLoader' => '1.06', # lib/SelfLoader.pm
517 'Shell' => undef, # lib/Shell.pm
518 'Socket' => '1.5', # ext/Socket/Socket.pm
519 'Symbol' => undef, # lib/Symbol.pm
520 'Sys::Hostname' => undef, # lib/Sys/Hostname.pm
521 'Sys::Syslog' => undef, # lib/Sys/Syslog.pm
522 'Term::Cap' => undef, # lib/Term/Cap.pm
523 'Term::Complete' => undef, # lib/Term/Complete.pm
524 'Term::ReadLine' => undef, # lib/Term/ReadLine.pm
525 'Test::Harness' => '1.07', # lib/Test/Harness.pm
526 'Text::Abbrev' => undef, # lib/Text/Abbrev.pm
527 'Text::ParseWords' => undef, # lib/Text/ParseWords.pm
528 'Text::Soundex' => undef, # lib/Text/Soundex.pm
529 'Text::Tabs' => undef, # lib/Text/Tabs.pm
530 'Text::Wrap' => undef, # lib/Text/Wrap.pm
531 'Tie::Hash' => undef, # lib/Tie/Hash.pm
532 'Tie::Scalar' => undef, # lib/Tie/Scalar.pm
533 'Tie::SubstrHash' => undef, # lib/Tie/SubstrHash.pm
534 'Time::Local' => undef, # lib/Time/Local.pm
535 'diagnostics' => undef, # lib/diagnostics.pm
536 'integer' => undef, # lib/integer.pm
537 'less' => undef, # lib/less.pm
538 'lib' => undef, # lib/lib.pm
539 'overload' => undef, # lib/overload.pm
540 'sigtrap' => undef, # lib/sigtrap.pm
541 'strict' => undef, # lib/strict.pm
542 'subs' => undef, # lib/subs.pm
543 'vars' => undef, # lib/vars.pm
547 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
548 'AutoLoader' => undef, #./lib/AutoLoader.pm
549 'AutoSplit' => undef, #./lib/AutoSplit.pm
550 'Benchmark' => undef, #./lib/Benchmark.pm
551 'Carp' => undef, #./lib/Carp.pm
553 'Cwd' => undef, #./lib/Cwd.pm
554 'DB_File' => '1.03', #./lib/DB_File.pm
555 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
556 'diagnostics' => undef, #./lib/diagnostics.pm
557 'DirHandle' => undef, #./lib/DirHandle.pm
558 'DynaLoader' => '1.00', #./ext/DynaLoader/DynaLoader.pm
559 'English' => undef, #./lib/English.pm
560 'Env' => undef, #./lib/Env.pm
561 'Exporter' => undef, #./lib/Exporter.pm
562 'ExtUtils::Embed' => '1.18', #./lib/ExtUtils/Embed.pm
563 'ExtUtils::Install' => '1.15 ', #./lib/ExtUtils/Install.pm
564 'ExtUtils::Liblist' => '1.20 ', #./lib/ExtUtils/Liblist.pm
565 'ExtUtils::MakeMaker' => '5.38', #./lib/ExtUtils/MakeMaker.pm
566 'ExtUtils::Manifest' => '1.27', #./lib/ExtUtils/Manifest.pm
567 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
568 'ExtUtils::Mksymlists' => '1.12 ', #./lib/ExtUtils/Mksymlists.pm
569 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
570 'ExtUtils::MM_Unix' => '1.107 ', #./lib/ExtUtils/MM_Unix.pm
571 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
572 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
573 'Fatal' => undef, #./lib/Fatal.pm
574 'Fcntl' => '1.00', #./ext/Fcntl/Fcntl.pm
575 'File::Basename' => '2.4', #./lib/File/Basename.pm
576 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
577 'File::Copy' => '1.5', #./lib/File/Copy.pm
578 'File::Find' => undef, #./lib/File/Find.pm
579 'File::Path' => '1.01', #./lib/File/Path.pm
580 'FileCache' => undef, #./lib/FileCache.pm
581 'FileHandle' => '1.00', #./ext/FileHandle/FileHandle.pm
582 'FindBin' => '1.04', #./lib/FindBin.pm
583 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
584 'Getopt::Long' => '2.04', #./lib/Getopt/Long.pm
585 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
586 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
587 'integer' => undef, #./lib/integer.pm
588 'IO' => undef, #./ext/IO/IO.pm
589 'IO::File' => '1.05', #./ext/IO/lib/IO/File.pm
590 'IO::Handle' => '1.12', #./ext/IO/lib/IO/Handle.pm
591 'IO::Pipe' => '1.07', #./ext/IO/lib/IO/Pipe.pm
592 'IO::Seekable' => '1.05', #./ext/IO/lib/IO/Seekable.pm
593 'IO::Select' => '1.09', #./ext/IO/lib/IO/Select.pm
594 'IO::Socket' => '1.13', #./ext/IO/lib/IO/Socket.pm
595 'IPC::Open2' => undef, #./lib/IPC/Open2.pm
596 'IPC::Open3' => undef, #./lib/IPC/Open3.pm
597 'less' => undef, #./lib/less.pm
598 'lib' => undef, #./lib/lib.pm
599 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
600 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
601 'Math::Complex' => undef, #./lib/Math/Complex.pm
602 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm
603 'Net::Ping' => '1.01', #./lib/Net/Ping.pm
604 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
605 'Opcode' => '1.01', #./ext/Opcode/Opcode.pm
606 'ops' => undef, #./ext/Opcode/ops.pm
607 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
608 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
609 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
610 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
611 'overload' => undef, #./lib/overload.pm
612 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
613 'Pod::Text' => undef, #./lib/Pod/Text.pm
614 'POSIX' => '1.00', #./ext/POSIX/POSIX.pm
615 'Safe' => '2.06', #./ext/Opcode/Safe.pm
616 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
617 'Search::Dict' => undef, #./lib/Search/Dict.pm
618 'SelectSaver' => undef, #./lib/SelectSaver.pm
619 'SelfLoader' => '1.06', #./lib/SelfLoader.pm
620 'Shell' => undef, #./lib/Shell.pm
621 'sigtrap' => '1.01', #./lib/sigtrap.pm
622 'Socket' => '1.5', #./ext/Socket/Socket.pm
623 'strict' => undef, #./lib/strict.pm
624 'subs' => undef, #./lib/subs.pm
625 'Symbol' => undef, #./lib/Symbol.pm
626 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
627 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
628 'Term::Cap' => undef, #./lib/Term/Cap.pm
629 'Term::Complete' => undef, #./lib/Term/Complete.pm
630 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
631 'Test::Harness' => '1.13', #./lib/Test/Harness.pm
632 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
633 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm
634 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
635 'Text::Tabs' => '96.051501', #./lib/Text/Tabs.pm
636 'Text::Wrap' => '96.041801', #./lib/Text/Wrap.pm
637 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
638 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
639 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
640 'Time::Local' => undef, #./lib/Time/Local.pm
641 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
642 'vars' => undef, #./lib/vars.pm
643 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
644 'VMS::Stdio' => '2.0', #./vms/ext/Stdio/Stdio.pm
648 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
649 'AutoLoader' => undef, #./lib/AutoLoader.pm
650 'AutoSplit' => undef, #./lib/AutoSplit.pm
651 'autouse' => '1.01', #./lib/autouse.pm
652 'Benchmark' => undef, #./lib/Benchmark.pm
653 'blib' => undef, #./lib/blib.pm
654 'Bundle::CPAN' => '0.02', #./lib/Bundle/CPAN.pm
655 'Carp' => undef, #./lib/Carp.pm
656 'CGI' => '2.36', #./lib/CGI.pm
657 'CGI::Apache' => '1.01', #./lib/CGI/Apache.pm
658 'CGI::Carp' => '1.06', #./lib/CGI/Carp.pm
659 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
660 'CGI::Push' => '1.00', #./lib/CGI/Push.pm
661 'CGI::Switch' => '0.05', #./lib/CGI/Switch.pm
662 'Class::Struct' => undef, #./lib/Class/Struct.pm
664 'constant' => '1.00', #./lib/constant.pm
665 'CPAN' => '1.2401', #./lib/CPAN.pm
666 'CPAN::FirstTime' => '1.18 ', #./lib/CPAN/FirstTime.pm
667 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
668 'Cwd' => '2.00', #./lib/Cwd.pm
669 'DB_File' => '1.14', #./ext/DB_File/DB_File.pm
670 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
671 'diagnostics' => undef, #./lib/diagnostics.pm
672 'DirHandle' => undef, #./lib/DirHandle.pm
673 'DynaLoader' => '1.02', #./ext/DynaLoader/DynaLoader.pm
674 'English' => undef, #./lib/English.pm
675 'Env' => undef, #./lib/Env.pm
676 'Exporter' => undef, #./lib/Exporter.pm
677 'ExtUtils::Command' => '1.00', #./lib/ExtUtils/Command.pm
678 'ExtUtils::Embed' => '1.2501', #./lib/ExtUtils/Embed.pm
679 'ExtUtils::Install' => '1.16 ', #./lib/ExtUtils/Install.pm
680 'ExtUtils::Liblist' => '1.2201 ', #./lib/ExtUtils/Liblist.pm
681 'ExtUtils::MakeMaker' => '5.4002', #./lib/ExtUtils/MakeMaker.pm
682 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
683 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
684 'ExtUtils::Mksymlists' => '1.13 ', #./lib/ExtUtils/Mksymlists.pm
685 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
686 'ExtUtils::MM_Unix' => '1.114 ', #./lib/ExtUtils/MM_Unix.pm
687 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
688 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
689 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
690 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
691 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
692 'File::Basename' => '2.5', #./lib/File/Basename.pm
693 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
694 'File::Compare' => '1.1001', #./lib/File/Compare.pm
695 'File::Copy' => '2.02', #./lib/File/Copy.pm
696 'File::Find' => undef, #./lib/File/Find.pm
697 'File::Path' => '1.04', #./lib/File/Path.pm
698 'File::stat' => undef, #./lib/File/stat.pm
699 'FileCache' => undef, #./lib/FileCache.pm
700 'FileHandle' => '2.00', #./lib/FileHandle.pm
701 'FindBin' => '1.04', #./lib/FindBin.pm
702 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
703 'Getopt::Long' => '2.10', #./lib/Getopt/Long.pm
704 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
705 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
706 'integer' => undef, #./lib/integer.pm
707 'IO' => undef, #./ext/IO/IO.pm
708 'IO::File' => '1.0602', #./ext/IO/lib/IO/File.pm
709 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm
710 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
711 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
712 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
713 'IO::Socket' => '1.1602', #./ext/IO/lib/IO/Socket.pm
714 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
715 'IPC::Open3' => '1.0101', #./lib/IPC/Open3.pm
716 'less' => undef, #./lib/less.pm
717 'lib' => undef, #./lib/lib.pm
718 'locale' => undef, #./lib/locale.pm
719 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
720 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
721 'Math::Complex' => '1.01', #./lib/Math/Complex.pm
722 'Math::Trig' => '1', #./lib/Math/Trig.pm
723 'NDBM_File' => '1.00', #./ext/NDBM_File/NDBM_File.pm
724 'Net::hostent' => undef, #./lib/Net/hostent.pm
725 'Net::netent' => undef, #./lib/Net/netent.pm
726 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
727 'Net::protoent' => undef, #./lib/Net/protoent.pm
728 'Net::servent' => undef, #./lib/Net/servent.pm
729 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
730 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
731 'ops' => undef, #./ext/Opcode/ops.pm
732 'Safe' => '2.06', #./ext/Opcode/Safe.pm
733 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
734 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
735 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
736 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
737 'overload' => undef, #./lib/overload.pm
738 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
739 'Pod::Html' => undef, #./lib/Pod/Html.pm
740 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm
741 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
742 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
743 'Search::Dict' => undef, #./lib/Search/Dict.pm
744 'SelectSaver' => undef, #./lib/SelectSaver.pm
745 'SelfLoader' => '1.07', #./lib/SelfLoader.pm
746 'Shell' => undef, #./lib/Shell.pm
747 'sigtrap' => '1.02', #./lib/sigtrap.pm
748 'Socket' => '1.6', #./ext/Socket/Socket.pm
749 'strict' => undef, #./lib/strict.pm
750 'subs' => undef, #./lib/subs.pm
751 'Symbol' => '1.02', #./lib/Symbol.pm
752 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
753 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
754 'Term::Cap' => undef, #./lib/Term/Cap.pm
755 'Term::Complete' => undef, #./lib/Term/Complete.pm
756 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
757 'Test::Harness' => '1.1502', #./lib/Test/Harness.pm
758 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
759 'Text::ParseWords' => undef, #./lib/Text/ParseWords.pm
760 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
761 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
762 'Text::Wrap' => '97.011701', #./lib/Text/Wrap.pm
763 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
764 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
765 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
766 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
767 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
768 'Time::Local' => undef, #./lib/Time/Local.pm
769 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
770 'Time::tm' => undef, #./lib/Time/tm.pm
771 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
772 'User::grent' => undef, #./lib/User/grent.pm
773 'User::pwent' => undef, #./lib/User/pwent.pm
774 'vars' => undef, #./lib/vars.pm
775 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
776 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
777 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm
778 'vmsish' => undef, #./vms/ext/vmsish.pm
782 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
783 'attrs' => '1.0', #./ext/attrs/attrs.pm
784 'AutoLoader' => undef, #./lib/AutoLoader.pm
785 'AutoSplit' => '1.0302', #./lib/AutoSplit.pm
786 'autouse' => '1.01', #./lib/autouse.pm
787 'B' => undef, #./ext/B/B.pm
788 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm
789 'B::Assembler' => undef, #./ext/B/B/Assembler.pm
790 'B::Bblock' => undef, #./ext/B/B/Bblock.pm
791 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm
792 'B::C' => undef, #./ext/B/B/C.pm
793 'B::CC' => undef, #./ext/B/B/CC.pm
794 'B::Debug' => undef, #./ext/B/B/Debug.pm
795 'B::Deparse' => '0.56', #./ext/B/B/Deparse.pm
796 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm
797 'B::Lint' => undef, #./ext/B/B/Lint.pm
798 'B::Showlex' => undef, #./ext/B/B/Showlex.pm
799 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm
800 'B::Terse' => undef, #./ext/B/B/Terse.pm
801 'B::Xref' => undef, #./ext/B/B/Xref.pm
802 'base' => undef, #./lib/base.pm
803 'Benchmark' => undef, #./lib/Benchmark.pm
804 'blib' => '1.00', #./lib/blib.pm
805 'Carp' => undef, #./lib/Carp.pm
806 'CGI' => '2.42', #./lib/CGI.pm
807 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm
808 'CGI::Carp' => '1.101', #./lib/CGI/Carp.pm
809 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm
810 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
811 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
812 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm
813 'Class::Struct' => undef, #./lib/Class/Struct.pm
815 'constant' => '1.00', #./lib/constant.pm
816 'CPAN' => '1.3901', #./lib/CPAN.pm
817 'CPAN::FirstTime' => '1.29 ', #./lib/CPAN/FirstTime.pm
818 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
819 'Cwd' => '2.01', #./lib/Cwd.pm
820 'Data::Dumper' => '2.09', #./ext/Data/Dumper/Dumper.pm
821 'DB_File' => '1.60', #./ext/DB_File/DB_File.pm
822 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
823 'DynaLoader' => '1.03',
824 'diagnostics' => undef, #./lib/diagnostics.pm
825 'DirHandle' => undef, #./lib/DirHandle.pm
826 'English' => undef, #./lib/English.pm
827 'Env' => undef, #./lib/Env.pm
828 'Exporter' => undef, #./lib/Exporter.pm
829 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
830 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
831 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
832 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm
833 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
834 'ExtUtils::MakeMaker' => '5.4301', #./lib/ExtUtils/MakeMaker.pm
835 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
836 'ExtUtils::Mkbootstrap' => '1.13 ', #./lib/ExtUtils/Mkbootstrap.pm
837 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
838 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
839 'ExtUtils::MM_Unix' => '1.12601 ', #./lib/ExtUtils/MM_Unix.pm
840 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
841 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
842 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm
843 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
844 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
845 'Fatal' => '1.02', #./lib/Fatal.pm
846 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
847 'fields' => '0.02', #./lib/fields.pm
848 'File::Basename' => '2.6', #./lib/File/Basename.pm
849 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
850 'File::Compare' => '1.1001', #./lib/File/Compare.pm
851 'File::Copy' => '2.02', #./lib/File/Copy.pm
852 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
853 'File::Find' => undef, #./lib/File/Find.pm
854 'File::Path' => '1.0401', #./lib/File/Path.pm
855 'File::Spec' => '0.6', #./lib/File/Spec.pm
856 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm
857 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
858 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
859 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
860 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
861 'File::stat' => undef, #./lib/File/stat.pm
862 'FileCache' => undef, #./lib/FileCache.pm
863 'FileHandle' => '2.00', #./lib/FileHandle.pm
864 'FindBin' => '1.41', #./lib/FindBin.pm
865 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
866 'Getopt::Long' => '2.17', #./lib/Getopt/Long.pm
867 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
868 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
869 'integer' => undef, #./lib/integer.pm
870 'IO' => undef, #./ext/IO/IO.pm
871 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm
872 'IO::Handle' => '1.1505', #./ext/IO/lib/IO/Handle.pm
873 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
874 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
875 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
876 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm
877 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
878 'IPC::Open3' => '1.0102', #./lib/IPC/Open3.pm
879 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm
880 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm
881 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm
882 'less' => undef, #./lib/less.pm
883 'lib' => undef, #./lib/lib.pm
884 'locale' => undef, #./lib/locale.pm
885 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
886 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
887 'Math::Complex' => '1.25', #./lib/Math/Complex.pm
888 'Math::Trig' => '1', #./lib/Math/Trig.pm
889 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm
890 'Net::hostent' => undef, #./lib/Net/hostent.pm
891 'Net::netent' => undef, #./lib/Net/netent.pm
892 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
893 'Net::protoent' => undef, #./lib/Net/protoent.pm
894 'Net::servent' => undef, #./lib/Net/servent.pm
895 'O' => undef, #./ext/B/O.pm
896 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
897 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
898 'ops' => undef, #./ext/Opcode/ops.pm
899 'Safe' => '2.06', #./ext/Opcode/Safe.pm
900 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
901 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
902 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm
903 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
904 'overload' => undef, #./lib/overload.pm
905 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
906 'Pod::Html' => '1.01', #./lib/Pod/Html.pm
907 'Pod::Text' => '1.0203', #./lib/Pod/Text.pm
908 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
909 're' => '0.02', #./ext/re/re.pm
910 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
911 'Search::Dict' => undef, #./lib/Search/Dict.pm
912 'SelectSaver' => undef, #./lib/SelectSaver.pm
913 'SelfLoader' => '1.08', #./lib/SelfLoader.pm
914 'Shell' => undef, #./lib/Shell.pm
915 'sigtrap' => '1.02', #./lib/sigtrap.pm
916 'Socket' => '1.7', #./ext/Socket/Socket.pm
917 'strict' => '1.01', #./lib/strict.pm
918 'subs' => undef, #./lib/subs.pm
919 'Symbol' => '1.02', #./lib/Symbol.pm
920 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
921 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
922 'Term::Cap' => undef, #./lib/Term/Cap.pm
923 'Term::Complete' => undef, #./lib/Term/Complete.pm
924 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
925 'Test' => '1.04', #./lib/Test.pm
926 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm
927 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
928 'Text::ParseWords' => '3.1', #./lib/Text/ParseWords.pm
929 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
930 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
931 'Text::Wrap' => '97.02', #./lib/Text/Wrap.pm
932 'Thread' => '1.0', #./ext/Thread/Thread.pm
933 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm
934 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm
935 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm
936 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm
937 'Tie::Array' => '1.00', #./lib/Tie/Array.pm
938 'Tie::Handle' => undef, #./lib/Tie/Handle.pm
939 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
940 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
941 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
942 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
943 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
944 'Time::Local' => undef, #./lib/Time/Local.pm
945 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
946 'Time::tm' => undef, #./lib/Time/tm.pm
947 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
948 'User::grent' => undef, #./lib/User/grent.pm
949 'User::pwent' => undef, #./lib/User/pwent.pm
950 'vars' => undef, #./lib/vars.pm
951 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
952 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
953 'VMS::Stdio' => '2.1', #./vms/ext/Stdio/Stdio.pm
954 'vmsish' => undef, #./vms/ext/vmsish.pm
958 'AnyDBM_File' => undef,
960 'AutoLoader' => undef,
961 'AutoSplit' => 1.0303,
963 'B::Asmdata' => undef,
964 'B::Assembler' => undef,
965 'B::Bblock' => undef,
966 'B::Bytecode' => undef,
970 'B::Deparse' => 0.56,
971 'B::Disassembler' => undef,
974 'B::Showlex' => undef,
975 'B::Stackobj' => undef,
979 'Benchmark' => undef,
983 'CGI::Apache' => 1.1,
985 'CGI::Cookie' => 1.06,
988 'CGI::Switch' => 0.06,
989 'Class::Struct' => undef,
991 'constant' => '1.00',
992 'CPAN::FirstTime' => 1.36 ,
994 'CPAN::Nox' => '1.00',
996 'Data::Dumper' => 2.101,
998 'Devel::SelfStubber' => 1.01,
999 'diagnostics' => undef,
1000 'DirHandle' => undef,
1001 'Dumpvalue' => undef,
1002 'DynaLoader' => 1.03,
1005 'Exporter' => undef,
1006 'ExtUtils::Command' => 1.01,
1007 'ExtUtils::Embed' => 1.2505,
1008 'ExtUtils::Install' => 1.28 ,
1009 'ExtUtils::Installed' => 0.02,
1010 'ExtUtils::Liblist' => 1.25 ,
1011 'ExtUtils::MakeMaker' => 5.4302,
1012 'ExtUtils::Manifest' => 1.33 ,
1013 'ExtUtils::Mkbootstrap' => 1.14 ,
1014 'ExtUtils::Mksymlists' => 1.17 ,
1015 'ExtUtils::MM_OS2' => undef,
1016 'ExtUtils::MM_Unix' => 1.12602 ,
1017 'ExtUtils::MM_VMS' => undef,
1018 'ExtUtils::MM_Win32' => undef,
1019 'ExtUtils::Packlist' => 0.03,
1020 'ExtUtils::testlib' => 1.11 ,
1021 'ExtUtils::XSSymSet' => '1.0',
1025 'File::Basename' => 2.6,
1026 'File::CheckTree' => undef,
1027 'File::Compare' => 1.1001,
1028 'File::Copy' => 2.02,
1029 'File::DosGlob' => undef,
1030 'File::Find' => undef,
1031 'File::Path' => 1.0401,
1032 'File::Spec' => 0.6,
1033 'File::Spec::Mac' => '1.0',
1034 'File::Spec::OS2' => undef,
1035 'File::Spec::Unix' => undef,
1036 'File::Spec::VMS' => undef,
1037 'File::Spec::Win32' => undef,
1038 'File::stat' => undef,
1039 'FileCache' => undef,
1040 'FileHandle' => '2.00',
1042 'GDBM_File' => '1.00',
1043 'Getopt::Long' => 2.19,
1044 'Getopt::Std' => 1.01,
1045 'I18N::Collate' => undef,
1048 'IO::File' => 1.06021,
1049 'IO::Handle' => 1.1505,
1050 'IO::Pipe' => 1.0902,
1051 'IO::Seekable' => 1.06,
1052 'IO::Select' => '1.10',
1053 'IO::Socket' => 1.1603,
1054 'IPC::Msg' => '1.00',
1055 'IPC::Open2' => 1.01,
1056 'IPC::Open3' => 1.0103,
1057 'IPC::Semaphore' => '1.00',
1058 'IPC::SysV' => 1.03,
1062 'Math::BigFloat' => undef,
1063 'Math::BigInt' => undef,
1064 'Math::Complex' => 1.26,
1066 'NDBM_File' => 1.01,
1067 'Net::hostent' => undef,
1068 'Net::netent' => undef,
1069 'Net::Ping' => 2.02,
1070 'Net::protoent' => undef,
1071 'Net::servent' => undef,
1073 'ODBM_File' => '1.00',
1076 'OS2::ExtAttr' => 0.01,
1077 'OS2::PrfDB' => 0.02,
1078 'OS2::Process' => 0.2,
1079 'OS2::REXX' => undef,
1080 'overload' => undef,
1081 'Pod::Functions' => undef,
1082 'Pod::Html' => 1.01,
1083 'Pod::Text' => 1.0203,
1087 'SDBM_File' => '1.00',
1088 'Search::Dict' => undef,
1089 'SelectSaver' => undef,
1090 'SelfLoader' => 1.08,
1097 'Sys::Hostname' => undef,
1098 'Sys::Syslog' => undef,
1099 'Term::Cap' => undef,
1100 'Term::Complete' => undef,
1101 'Term::ReadLine' => undef,
1103 'Test::Harness' => 1.1602,
1104 'Text::Abbrev' => undef,
1105 'Text::ParseWords' => 3.1,
1106 'Text::Soundex' => undef,
1107 'Text::Tabs' => 96.121201,
1108 'Text::Wrap' => 98.112902,
1110 'Thread::Queue' => undef,
1111 'Thread::Semaphore' => undef,
1112 'Thread::Specific' => undef,
1113 'Thread::Signal' => undef,
1114 'Tie::Array' => '1.00',
1115 'Tie::Handle' => undef,
1116 'Tie::Hash' => undef,
1117 'Tie::RefHash' => undef,
1118 'Tie::Scalar' => undef,
1119 'Tie::SubstrHash' => undef,
1120 'Time::gmtime' => 1.01,
1121 'Time::Local' => undef,
1122 'Time::localtime' => 1.01,
1123 'Time::tm' => undef,
1124 'UNIVERSAL' => undef,
1125 'User::grent' => undef,
1126 'User::pwent' => undef,
1128 'VMS::DCLsym' => 1.01,
1129 'VMS::Filespec' => undef,
1130 'VMS::Stdio' => 2.1,
1135 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
1136 'attrs' => '0.1', #./lib/attrs.pm
1137 'AutoLoader' => '5.56', #./lib/AutoLoader.pm
1138 'AutoSplit' => '1.0303', #./lib/AutoSplit.pm
1139 'autouse' => '1.01', #./lib/autouse.pm
1140 'base' => undef, #./lib/base.pm
1141 'Benchmark' => undef, #./lib/Benchmark.pm
1142 'blib' => '1.00', #./lib/blib.pm
1143 'Bundle::CPAN' => '0.03', #./lib/Bundle/CPAN.pm
1144 'Carp' => undef, #./lib/Carp.pm
1145 'CGI' => '2.42', #./lib/CGI.pm
1146 'CGI::Apache' => '1.1', #./lib/CGI/Apache.pm
1147 'CGI::Carp' => '1.10', #./lib/CGI/Carp.pm
1148 'CGI::Cookie' => '1.06', #./lib/CGI/Cookie.pm
1149 'CGI::Fast' => '1.00a', #./lib/CGI/Fast.pm
1150 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
1151 'CGI::Switch' => '0.06', #./lib/CGI/Switch.pm
1152 'Class::Struct' => undef, #./lib/Class/Struct.pm
1154 'constant' => '1.00', #./lib/constant.pm
1155 'CPAN' => '1.40', #./lib/CPAN.pm
1156 'CPAN::FirstTime' => '1.30 ', #./lib/CPAN/FirstTime.pm
1157 'CPAN::Nox' => undef, #./lib/CPAN/Nox.pm
1158 'Cwd' => '2.01', #./lib/Cwd.pm
1159 'DB_File' => '1.15', #./ext/DB_File/DB_File.pm
1160 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
1161 'diagnostics' => undef, #./lib/diagnostics.pm
1162 'DirHandle' => undef, #./lib/DirHandle.pm
1163 'DynaLoader' => '1.03',
1164 'English' => undef, #./lib/English.pm
1165 'Env' => undef, #./lib/Env.pm
1166 'Exporter' => undef, #./lib/Exporter.pm
1167 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
1168 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
1169 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
1170 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
1171 'ExtUtils::MakeMaker' => '5.42', #./lib/ExtUtils/MakeMaker.pm
1172 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
1173 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1174 'ExtUtils::Mksymlists' => '1.16 ', #./lib/ExtUtils/Mksymlists.pm
1175 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
1176 'ExtUtils::MM_Unix' => '1.118 ', #./lib/ExtUtils/MM_Unix.pm
1177 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
1178 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
1179 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
1180 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
1181 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
1182 'File::Basename' => '2.6', #./lib/File/Basename.pm
1183 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
1184 'File::Compare' => '1.1001', #./lib/File/Compare.pm
1185 'File::Copy' => '2.02', #./lib/File/Copy.pm
1186 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
1187 'File::Find' => undef, #./lib/File/Find.pm
1188 'File::Path' => '1.0402', #./lib/File/Path.pm
1189 'File::Spec' => '0.6', #./lib/File/Spec.pm
1190 'File::Spec::Mac' => '1.0', #./lib/File/Spec/Mac.pm
1191 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
1192 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
1193 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
1194 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
1195 'File::stat' => undef, #./lib/File/stat.pm
1196 'FileCache' => undef, #./lib/FileCache.pm
1197 'FileHandle' => '2.00', #./lib/FileHandle.pm
1198 'FindBin' => '1.41', #./lib/FindBin.pm
1199 'GDBM_File' => '1.00', #./ext/GDBM_File/GDBM_File.pm
1200 'Getopt::Long' => '2.19', #./lib/Getopt/Long.pm
1201 'Getopt::Std' => undef, #./lib/Getopt/Std.pm
1202 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
1203 'integer' => undef, #./lib/integer.pm
1204 'IO' => undef, #./ext/IO/IO.pm
1205 'IO::File' => '1.06021', #./ext/IO/lib/IO/File.pm
1206 'IO::Handle' => '1.1504', #./ext/IO/lib/IO/Handle.pm
1207 'IO::Pipe' => '1.0901', #./ext/IO/lib/IO/Pipe.pm
1208 'IO::Seekable' => '1.06', #./ext/IO/lib/IO/Seekable.pm
1209 'IO::Select' => '1.10', #./ext/IO/lib/IO/Select.pm
1210 'IO::Socket' => '1.1603', #./ext/IO/lib/IO/Socket.pm
1211 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
1212 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm
1213 'less' => undef, #./lib/less.pm
1214 'lib' => undef, #./lib/lib.pm
1215 'locale' => undef, #./lib/locale.pm
1216 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
1217 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
1218 'Math::Complex' => '1.25', #./lib/Math/Complex.pm
1219 'Math::Trig' => '1', #./lib/Math/Trig.pm
1220 'NDBM_File' => '1.01', #./ext/NDBM_File/NDBM_File.pm
1221 'Net::hostent' => undef, #./lib/Net/hostent.pm
1222 'Net::netent' => undef, #./lib/Net/netent.pm
1223 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
1224 'Net::protoent' => undef, #./lib/Net/protoent.pm
1225 'Net::servent' => undef, #./lib/Net/servent.pm
1226 'ODBM_File' => '1.00', #./ext/ODBM_File/ODBM_File.pm
1227 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
1228 'ops' => undef, #./ext/Opcode/ops.pm
1229 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1230 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1231 'OS2::Process' => undef, #./os2/OS2/Process/Process.pm
1232 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
1233 'overload' => undef, #./lib/overload.pm
1234 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
1235 'Pod::Html' => '1.0101', #./lib/Pod/Html.pm
1236 'Pod::Text' => '1.0204', #./lib/Pod/Text.pm
1237 'POSIX' => '1.02', #./ext/POSIX/POSIX.pm
1238 're' => undef, #./lib/re.pm
1239 'Safe' => '2.06', #./ext/Opcode/Safe.pm
1240 'SDBM_File' => '1.00', #./ext/SDBM_File/SDBM_File.pm
1241 'Search::Dict' => undef, #./lib/Search/Dict.pm
1242 'SelectSaver' => undef, #./lib/SelectSaver.pm
1243 'SelfLoader' => '1.08', #./lib/SelfLoader.pm
1244 'Shell' => undef, #./lib/Shell.pm
1245 'sigtrap' => '1.02', #./lib/sigtrap.pm
1246 'Socket' => '1.7', #./ext/Socket/Socket.pm
1247 'strict' => '1.01', #./lib/strict.pm
1248 'subs' => undef, #./lib/subs.pm
1249 'Symbol' => '1.02', #./lib/Symbol.pm
1250 'Sys::Hostname' => undef, #./lib/Sys/Hostname.pm
1251 'Sys::Syslog' => undef, #./lib/Sys/Syslog.pm
1252 'Term::Cap' => undef, #./lib/Term/Cap.pm
1253 'Term::Complete' => undef, #./lib/Term/Complete.pm
1254 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
1255 'Test' => '1.04', #./lib/Test.pm
1256 'Test::Harness' => '1.1602', #./lib/Test/Harness.pm
1257 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
1258 'Text::ParseWords' => '3.1001', #./lib/Text/ParseWords.pm
1259 'Text::Soundex' => undef, #./lib/Text/Soundex.pm
1260 'Text::Tabs' => '96.121201', #./lib/Text/Tabs.pm
1261 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm
1262 'Tie::Handle' => undef, #./lib/Tie/Handle.pm
1263 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
1264 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
1265 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
1266 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
1267 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
1268 'Time::Local' => undef, #./lib/Time/Local.pm
1269 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
1270 'Time::tm' => undef, #./lib/Time/tm.pm
1271 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
1272 'User::grent' => undef, #./lib/User/grent.pm
1273 'User::pwent' => undef, #./lib/User/pwent.pm
1274 'vars' => undef, #./lib/vars.pm
1275 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1276 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
1277 'VMS::Stdio' => '2.02', #./vms/ext/Stdio/Stdio.pm
1278 'vmsish' => undef, #./vms/ext/vmsish.pm
1282 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm
1283 'attrs' => '1.0', #lib/attrs.pm
1284 'AutoLoader' => undef, #lib/AutoLoader.pm
1285 'AutoSplit' => '1.0303', #lib/AutoSplit.pm
1286 'autouse' => '1.01', #lib/autouse.pm
1287 'base' => undef, #lib/base.pm
1288 'B::Asmdata' => undef, #lib/B/Asmdata.pm
1289 'B::Assembler' => undef, #lib/B/Assembler.pm
1290 'B::Bblock' => undef, #lib/B/Bblock.pm
1291 'B::Bytecode' => undef, #lib/B/Bytecode.pm
1292 'B::CC' => undef, #lib/B/CC.pm
1293 'B::C' => undef, #lib/B/C.pm
1294 'B::Debug' => undef, #lib/B/Debug.pm
1295 'B::Deparse' => '0.56', #lib/B/Deparse.pm
1296 'B::Disassembler' => undef, #lib/B/Disassembler.pm
1297 'Benchmark' => undef, #lib/Benchmark.pm
1298 'blib' => '1.00', #lib/blib.pm
1299 'B::Lint' => undef, #lib/B/Lint.pm
1300 'B::Showlex' => undef, #lib/B/Showlex.pm
1301 'B::Stackobj' => undef, #lib/B/Stackobj.pm
1302 'B::Terse' => undef, #lib/B/Terse.pm
1303 'B' => undef, #lib/B.pm
1304 'B::Xref' => undef, #lib/B/Xref.pm
1305 'Carp' => undef, #lib/Carp.pm
1306 'CGI' => '2.46', #lib/CGI.pm
1307 'CGI::Apache' => '1.1', #lib/CGI/Apache.pm
1308 'CGI::Carp' => '1.13', #lib/CGI/Carp.pm
1309 'CGI::Cookie' => '1.06', #lib/CGI/Cookie.pm
1310 'CGI::Fast' => '1.01', #lib/CGI/Fast.pm
1311 'CGI::Push' => '1.01', #lib/CGI/Push.pm
1312 'CGI::Switch' => '0.06', #lib/CGI/Switch.pm
1313 'Class::Struct' => undef, #lib/Class/Struct.pm
1314 'Config' => undef, #lib/Config.pm
1315 'constant' => '1.00', #lib/constant.pm
1316 'CPAN' => '1.48', #lib/CPAN.pm
1317 'CPAN::FirstTime' => '1.36 ', #lib/CPAN/FirstTime.pm
1318 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm
1319 'Cwd' => '2.01', #lib/Cwd.pm
1320 'Data::Dumper' => '2.101', #lib/Data/Dumper.pm
1321 'DB_File' => '1.807', #lib/DB_File.pm
1322 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm
1323 'diagnostics' => undef, #lib/diagnostics.pm
1324 'DirHandle' => undef, #lib/DirHandle.pm
1325 'Dumpvalue' => undef, #lib/Dumpvalue.pm
1326 'DynaLoader' => '1.03', #lib/DynaLoader.pm
1327 'English' => undef, #lib/English.pm
1328 'Env' => undef, #lib/Env.pm
1329 'Errno' => '1.111', #lib/Errno.pm
1330 'Exporter' => undef, #lib/Exporter.pm
1331 'ExtUtils::Command' => '1.01', #lib/ExtUtils/Command.pm
1332 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm
1333 'ExtUtils::Install' => '1.28 ', #lib/ExtUtils/Install.pm
1334 'ExtUtils::Installed' => '0.02', #lib/ExtUtils/Installed.pm
1335 'ExtUtils::Liblist' => '1.25 ', #lib/ExtUtils/Liblist.pm
1336 'ExtUtils::MakeMaker' => '5.4302', #lib/ExtUtils/MakeMaker.pm
1337 'ExtUtils::Manifest' => '1.33 ', #lib/ExtUtils/Manifest.pm
1338 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
1339 'ExtUtils::Mkbootstrap' => '1.14 ', #lib/ExtUtils/Mkbootstrap.pm
1340 'ExtUtils::Mksymlists' => '1.17 ', #lib/ExtUtils/Mksymlists.pm
1341 'ExtUtils::MM_OS2' => undef, #lib/ExtUtils/MM_OS2.pm
1342 'ExtUtils::MM_Unix' => '1.12602 ', #lib/ExtUtils/MM_Unix.pm
1343 'ExtUtils::MM_VMS' => undef, #lib/ExtUtils/MM_VMS.pm
1344 'ExtUtils::MM_Win32' => undef, #lib/ExtUtils/MM_Win32.pm
1345 'ExtUtils::Packlist' => '0.03', #lib/ExtUtils/Packlist.pm
1346 'ExtUtils::testlib' => '1.11 ', #lib/ExtUtils/testlib.pm
1347 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
1348 'Fatal' => '1.02', #lib/Fatal.pm
1349 'Fcntl' => '1.03', #lib/Fcntl.pm
1350 'fields' => '0.02', #lib/fields.pm
1351 'File::Basename' => '2.6', #lib/File/Basename.pm
1352 'FileCache' => undef, #lib/FileCache.pm
1353 'File::CheckTree' => undef, #lib/File/CheckTree.pm
1354 'File::Compare' => '1.1002', #lib/File/Compare.pm
1355 'File::Copy' => '2.02', #lib/File/Copy.pm
1356 'File::DosGlob' => undef, #lib/File/DosGlob.pm
1357 'File::Find' => undef, #lib/File/Find.pm
1358 'FileHandle' => '2.00', #lib/FileHandle.pm
1359 'File::Path' => '1.0401', #lib/File/Path.pm
1360 'File::Spec' => '0.8', #lib/File/Spec.pm
1361 'File::Spec::Functions' => undef, #lib/File/Spec/Functions.pm
1362 'File::Spec::Mac' => undef, #lib/File/Spec/Mac.pm
1363 'File::Spec::OS2' => undef, #lib/File/Spec/OS2.pm
1364 'File::Spec::Unix' => undef, #lib/File/Spec/Unix.pm
1365 'File::Spec::VMS' => undef, #lib/File/Spec/VMS.pm
1366 'File::Spec::Win32' => undef, #lib/File/Spec/Win32.pm
1367 'File::stat' => undef, #lib/File/stat.pm
1368 'FindBin' => '1.42', #lib/FindBin.pm
1369 'GDBM_File' => '1.00', #lib/GDBM_File.pm
1370 'Getopt::Long' => '2.20', #lib/Getopt/Long.pm
1371 'Getopt::Std' => '1.01', #lib/Getopt/Std.pm
1372 'I18N::Collate' => undef, #lib/I18N/Collate.pm
1373 'integer' => undef, #lib/integer.pm
1374 'IO::File' => '1.06021', #lib/IO/File.pm
1375 'IO::Handle' => '1.1505', #lib/IO/Handle.pm
1376 'IO::Pipe' => '1.0902', #lib/IO/Pipe.pm
1377 'IO::Seekable' => '1.06', #lib/IO/Seekable.pm
1378 'IO::Select' => '1.10', #lib/IO/Select.pm
1379 'IO::Socket' => '1.1603', #lib/IO/Socket.pm
1380 'IO' => undef, #lib/IO.pm
1381 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm
1382 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
1383 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm
1384 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm
1385 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm
1386 'less' => undef, #lib/less.pm
1387 'lib' => undef, #lib/lib.pm
1388 'locale' => undef, #lib/locale.pm
1389 'Math::BigFloat' => undef, #lib/Math/BigFloat.pm
1390 'Math::BigInt' => undef, #lib/Math/BigInt.pm
1391 'Math::Complex' => '1.26', #lib/Math/Complex.pm
1392 'Math::Trig' => '1', #lib/Math/Trig.pm
1393 'NDBM_File' => '1.01', #ext/NDBM_File/NDBM_File.pm
1394 'Net::hostent' => undef, #lib/Net/hostent.pm
1395 'Net::netent' => undef, #lib/Net/netent.pm
1396 'Net::Ping' => '2.02', #lib/Net/Ping.pm
1397 'Net::protoent' => undef, #lib/Net/protoent.pm
1398 'Net::servent' => undef, #lib/Net/servent.pm
1399 'ODBM_File' => '1.00', #ext/ODBM_File/ODBM_File.pm
1400 'Opcode' => '1.04', #lib/Opcode.pm
1401 'ops' => undef, #lib/ops.pm
1402 'O' => undef, #lib/O.pm
1403 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm
1404 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm
1405 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm
1406 'OS2::REXX' => undef, #os2/OS2/REXX/REXX.pm
1407 'overload' => undef, #lib/overload.pm
1408 'Pod::Functions' => undef, #lib/Pod/Functions.pm
1409 'Pod::Html' => '1.02', #lib/Pod/Html.pm
1410 'Pod::Text' => '1.0203', #lib/Pod/Text.pm
1411 'POSIX' => '1.02', #lib/POSIX.pm
1412 're' => '0.02', #lib/re.pm
1413 'Safe' => '2.06', #lib/Safe.pm
1414 'SDBM_File' => '1.00', #lib/SDBM_File.pm
1415 'Search::Dict' => undef, #lib/Search/Dict.pm
1416 'SelectSaver' => undef, #lib/SelectSaver.pm
1417 'SelfLoader' => '1.08', #lib/SelfLoader.pm
1418 'Shell' => undef, #lib/Shell.pm
1419 'sigtrap' => '1.02', #lib/sigtrap.pm
1420 'Socket' => '1.7', #lib/Socket.pm
1421 'strict' => '1.01', #lib/strict.pm
1422 'subs' => undef, #lib/subs.pm
1423 'Symbol' => '1.02', #lib/Symbol.pm
1424 'Sys::Hostname' => undef, #lib/Sys/Hostname.pm
1425 'Sys::Syslog' => undef, #lib/Sys/Syslog.pm
1426 'Term::Cap' => undef, #lib/Term/Cap.pm
1427 'Term::Complete' => undef, #lib/Term/Complete.pm
1428 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm
1429 'Test' => '1.122', #lib/Test.pm
1430 'Test::Harness' => '1.1602', #lib/Test/Harness.pm
1431 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm
1432 'Text::ParseWords' => '3.1', #lib/Text/ParseWords.pm
1433 'Text::Soundex' => undef, #lib/Text/Soundex.pm
1434 'Text::Tabs' => '96.121201', #lib/Text/Tabs.pm
1435 'Text::Wrap' => '98.112902', #lib/Text/Wrap.pm
1436 'Thread' => '1.0', #ext/Thread/Thread.pm
1437 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm
1438 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm
1439 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm
1440 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm
1441 'Tie::Array' => '1.00', #lib/Tie/Array.pm
1442 'Tie::Handle' => undef, #lib/Tie/Handle.pm
1443 'Tie::Hash' => undef, #lib/Tie/Hash.pm
1444 'Tie::RefHash' => undef, #lib/Tie/RefHash.pm
1445 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm
1446 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm
1447 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm
1448 'Time::localtime' => '1.01', #lib/Time/localtime.pm
1449 'Time::Local' => undef, #lib/Time/Local.pm
1450 'Time::tm' => undef, #lib/Time/tm.pm
1451 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm
1452 'User::grent' => undef, #lib/User/grent.pm
1453 'User::pwent' => undef, #lib/User/pwent.pm
1454 'vars' => undef, #lib/vars.pm
1455 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm
1456 'VMS::Filespec' => undef, #vms/ext/Filespec.pm
1457 'VMS::Stdio' => '2.1', #vms/ext/Stdio/Stdio.pm
1458 'vmsish' => undef, #vms/ext/vmsish.pm
1462 'AnyDBM_File' => undef, #./lib/AnyDBM_File.pm
1463 'AutoLoader' => '5.57', #./lib/AutoLoader.pm
1464 'AutoSplit' => '1.0305', #./lib/AutoSplit.pm
1465 'B' => undef, #./ext/B/B.pm
1466 'B::Asmdata' => undef, #./ext/B/B/Asmdata.pm
1467 'B::Assembler' => undef, #./ext/B/B/Assembler.pm
1468 'B::Bblock' => undef, #./ext/B/B/Bblock.pm
1469 'B::Bytecode' => undef, #./ext/B/B/Bytecode.pm
1470 'B::C' => undef, #./ext/B/B/C.pm
1471 'B::CC' => undef, #./ext/B/B/CC.pm
1472 'B::Debug' => undef, #./ext/B/B/Debug.pm
1473 'B::Deparse' => '0.59', #./ext/B/B/Deparse.pm
1474 'B::Disassembler' => undef, #./ext/B/B/Disassembler.pm
1475 'B::Lint' => undef, #./ext/B/B/Lint.pm
1476 'B::Showlex' => undef, #./ext/B/B/Showlex.pm
1477 'B::Stackobj' => undef, #./ext/B/B/Stackobj.pm
1478 'B::Stash' => undef, #./ext/B/B/Stash.pm
1479 'B::Terse' => undef, #./ext/B/B/Terse.pm
1480 'B::Xref' => undef, #./ext/B/B/Xref.pm
1481 'Benchmark' => '1', #./lib/Benchmark.pm
1482 'ByteLoader' => '0.03', #./ext/ByteLoader/ByteLoader.pm
1483 'CGI' => '2.56', #./lib/CGI.pm
1484 'CGI::Apache' => undef, #./lib/CGI/Apache.pm
1485 'CGI::Carp' => '1.14', #./lib/CGI/Carp.pm
1486 'CGI::Cookie' => '1.12', #./lib/CGI/Cookie.pm
1487 'CGI::Fast' => '1.02', #./lib/CGI/Fast.pm
1488 'CGI::Pretty' => '1.03', #./lib/CGI/Pretty.pm
1489 'CGI::Push' => '1.01', #./lib/CGI/Push.pm
1490 'CGI::Switch' => undef, #./lib/CGI/Switch.pm
1491 'CPAN' => '1.52', #./lib/CPAN.pm
1492 'CPAN::FirstTime' => '1.38 ', #./lib/CPAN/FirstTime.pm
1493 'CPAN::Nox' => '1.00', #./lib/CPAN/Nox.pm
1494 'Carp' => undef, #./lib/Carp.pm
1495 'Carp::Heavy' => undef, #./lib/Carp/Heavy.pm
1496 'Class::Struct' => '0.58', #./lib/Class/Struct.pm
1498 'Cwd' => '2.02', #./lib/Cwd.pm
1499 'DB' => '1.0', #./lib/DB.pm
1500 'DB_File' => '1.72', #./ext/DB_File/DB_File.pm
1501 'Data::Dumper' => '2.101', #./ext/Data/Dumper/Dumper.pm
1502 'Devel::DProf' => '20000000.00_00', #./ext/Devel/DProf/DProf.pm
1503 'Devel::Peek' => '1.00_01', #./ext/Devel/Peek/Peek.pm
1504 'Devel::SelfStubber' => '1.01', #./lib/Devel/SelfStubber.pm
1505 'DirHandle' => undef, #./lib/DirHandle.pm
1506 'Dumpvalue' => undef, #./lib/Dumpvalue.pm
1507 'DynaLoader' => '1.04',
1508 'English' => undef, #./lib/English.pm
1509 'Env' => undef, #./lib/Env.pm
1510 'Exporter' => '5.562', #./lib/Exporter.pm
1511 'Exporter::Heavy' => undef, #./lib/Exporter/Heavy.pm
1512 'ExtUtils::Command' => '1.01', #./lib/ExtUtils/Command.pm
1513 'ExtUtils::Embed' => '1.2505', #./lib/ExtUtils/Embed.pm
1514 'ExtUtils::Install' => '1.28 ', #./lib/ExtUtils/Install.pm
1515 'ExtUtils::Installed' => '0.02', #./lib/ExtUtils/Installed.pm
1516 'ExtUtils::Liblist' => '1.25 ', #./lib/ExtUtils/Liblist.pm
1517 'ExtUtils::MM_Cygwin' => undef, #./lib/ExtUtils/MM_Cygwin.pm
1518 'ExtUtils::MM_OS2' => undef, #./lib/ExtUtils/MM_OS2.pm
1519 'ExtUtils::MM_Unix' => '1.12603 ', #./lib/ExtUtils/MM_Unix.pm
1520 'ExtUtils::MM_VMS' => undef, #./lib/ExtUtils/MM_VMS.pm
1521 'ExtUtils::MM_Win32' => undef, #./lib/ExtUtils/MM_Win32.pm
1522 'ExtUtils::MakeMaker' => '5.45', #./lib/ExtUtils/MakeMaker.pm
1523 'ExtUtils::Manifest' => '1.33 ', #./lib/ExtUtils/Manifest.pm
1524 'ExtUtils::Miniperl' => undef,
1525 'ExtUtils::Mkbootstrap' => '1.14 ', #./lib/ExtUtils/Mkbootstrap.pm
1526 'ExtUtils::Mksymlists' => '1.17 ', #./lib/ExtUtils/Mksymlists.pm
1527 'ExtUtils::Packlist' => '0.03', #./lib/ExtUtils/Packlist.pm
1528 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
1529 'ExtUtils::testlib' => '1.11 ', #./lib/ExtUtils/testlib.pm
1530 'Fatal' => '1.02', #./lib/Fatal.pm
1531 'Fcntl' => '1.03', #./ext/Fcntl/Fcntl.pm
1532 'File::Basename' => '2.6', #./lib/File/Basename.pm
1533 'File::CheckTree' => undef, #./lib/File/CheckTree.pm
1534 'File::Compare' => '1.1002', #./lib/File/Compare.pm
1535 'File::Copy' => '2.03', #./lib/File/Copy.pm
1536 'File::DosGlob' => undef, #./lib/File/DosGlob.pm
1537 'File::Find' => undef, #./lib/File/Find.pm
1538 'File::Glob' => '0.991', #./ext/File/Glob/Glob.pm
1539 'File::Path' => '1.0403', #./lib/File/Path.pm
1540 'File::Spec' => '0.8', #./lib/File/Spec.pm
1541 'File::Spec::Functions' => undef, #./lib/File/Spec/Functions.pm
1542 'File::Spec::Mac' => undef, #./lib/File/Spec/Mac.pm
1543 'File::Spec::OS2' => undef, #./lib/File/Spec/OS2.pm
1544 'File::Spec::Unix' => undef, #./lib/File/Spec/Unix.pm
1545 'File::Spec::VMS' => undef, #./lib/File/Spec/VMS.pm
1546 'File::Spec::Win32' => undef, #./lib/File/Spec/Win32.pm
1547 'File::stat' => undef, #./lib/File/stat.pm
1548 'FileCache' => undef, #./lib/FileCache.pm
1549 'FileHandle' => '2.00', #./lib/FileHandle.pm
1550 'FindBin' => '1.42', #./lib/FindBin.pm
1551 'GDBM_File' => '1.03', #./ext/GDBM_File/GDBM_File.pm
1552 'Getopt::Long' => '2.23', #./lib/Getopt/Long.pm
1553 'Getopt::Std' => '1.02', #./lib/Getopt/Std.pm
1554 'I18N::Collate' => undef, #./lib/I18N/Collate.pm
1555 'IO' => '1.20', #./ext/IO/IO.pm
1556 'IO::Dir' => '1.03', #./ext/IO/lib/IO/Dir.pm
1557 'IO::File' => '1.08', #./ext/IO/lib/IO/File.pm
1558 'IO::Handle' => '1.21', #./ext/IO/lib/IO/Handle.pm
1559 'IO::Pipe' => '1.121', #./ext/IO/lib/IO/Pipe.pm
1560 'IO::Poll' => '0.01', #./ext/IO/lib/IO/Poll.pm
1561 'IO::Seekable' => '1.08', #./ext/IO/lib/IO/Seekable.pm
1562 'IO::Select' => '1.14', #./ext/IO/lib/IO/Select.pm
1563 'IO::Socket' => '1.26', #./ext/IO/lib/IO/Socket.pm
1564 'IO::Socket::INET' => '1.25', #./ext/IO/lib/IO/Socket/INET.pm
1565 'IO::Socket::UNIX' => '1.20', #./ext/IO/lib/IO/Socket/UNIX.pm
1566 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
1567 'IPC::Open3' => '1.0103', #./lib/IPC/Open3.pm
1568 'IPC::Msg' => '1.00', #./ext/IPC/SysV/Msg.pm
1569 'IPC::Semaphore' => '1.00', #./ext/IPC/SysV/Semaphore.pm
1570 'IPC::SysV' => '1.03', #./ext/IPC/SysV/SysV.pm
1571 'JNI' => '0.01', #./jpl/JNI/JNI.pm
1572 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
1573 'JPL::Class' => undef, #./jpl/JPL/Class.pm
1574 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
1575 'Math::BigFloat' => undef, #./lib/Math/BigFloat.pm
1576 'Math::BigInt' => undef, #./lib/Math/BigInt.pm
1577 'Math::Complex' => '1.26', #./lib/Math/Complex.pm
1578 'Math::Trig' => '1', #./lib/Math/Trig.pm
1579 'NDBM_File' => '1.03', #./ext/NDBM_File/NDBM_File.pm
1580 'Net::Ping' => '2.02', #./lib/Net/Ping.pm
1581 'Net::hostent' => undef, #./lib/Net/hostent.pm
1582 'Net::netent' => undef, #./lib/Net/netent.pm
1583 'Net::protoent' => undef, #./lib/Net/protoent.pm
1584 'Net::servent' => undef, #./lib/Net/servent.pm
1585 'O' => undef, #./ext/B/O.pm
1586 'ODBM_File' => '1.02', #./ext/ODBM_File/ODBM_File.pm
1587 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
1588 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
1589 'OS2::Process' => '0.2', #./os2/OS2/Process/Process.pm
1590 'OS2::REXX' => undef, #./os2/OS2/REXX/REXX.pm
1591 'OS2::DLL' => undef, #./os2/OS2/REXX/DLL/DLL.pm
1592 'Opcode' => '1.04', #./ext/Opcode/Opcode.pm
1593 'POSIX' => '1.03', #./ext/POSIX/POSIX.pm
1594 'Pod::Checker' => '1.098', #./lib/Pod/Checker.pm
1595 'Pod::Find' => '0.12', #./lib/Pod/Find.pm
1596 'Pod::Functions' => undef, #./lib/Pod/Functions.pm
1597 'Pod::Html' => '1.03', #./lib/Pod/Html.pm
1598 'Pod::InputObjects' => '1.12', #./lib/Pod/InputObjects.pm
1599 'Pod::Man' => '1.02', #./lib/Pod/Man.pm
1600 'Pod::ParseUtils' => '0.2', #./lib/Pod/ParseUtils.pm
1601 'Pod::Parser' => '1.12', #./lib/Pod/Parser.pm
1602 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
1603 'Pod::Select' => '1.12', #./lib/Pod/Select.pm
1604 'Pod::Text' => '2.03', #./lib/Pod/Text.pm
1605 'Pod::Text::Color' => '0.05', #./lib/Pod/Text/Color.pm
1606 'Pod::Text::Termcap' => '0.04', #./lib/Pod/Text/Termcap.pm
1607 'Pod::Usage' => '1.12', #./lib/Pod/Usage.pm
1608 'SDBM_File' => '1.02', #./ext/SDBM_File/SDBM_File.pm
1609 'Safe' => '2.06', #./ext/Opcode/Safe.pm
1610 'Search::Dict' => undef, #./lib/Search/Dict.pm
1611 'SelectSaver' => undef, #./lib/SelectSaver.pm
1612 'SelfLoader' => '1.0901', #./lib/SelfLoader.pm
1613 'Shell' => '0.2', #./lib/Shell.pm
1614 'Socket' => '1.72', #./ext/Socket/Socket.pm
1615 'Symbol' => '1.02', #./lib/Symbol.pm
1616 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm
1617 'Sys::Syslog' => '0.01', #./ext/Sys/Syslog/Syslog.pm
1618 'Term::ANSIColor' => '1.01', #./lib/Term/ANSIColor.pm
1619 'Term::Cap' => undef, #./lib/Term/Cap.pm
1620 'Term::Complete' => undef, #./lib/Term/Complete.pm
1621 'Term::ReadLine' => undef, #./lib/Term/ReadLine.pm
1622 'Test' => '1.13', #./lib/Test.pm
1623 'Test::Harness' => '1.1604', #./lib/Test/Harness.pm
1624 'Text::Abbrev' => undef, #./lib/Text/Abbrev.pm
1625 'Text::ParseWords' => '3.2', #./lib/Text/ParseWords.pm
1626 'Text::Soundex' => '1.0', #./lib/Text/Soundex.pm
1627 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
1628 'Text::Wrap' => '98.112902', #./lib/Text/Wrap.pm
1629 'Thread' => '1.0', #./ext/Thread/Thread.pm
1630 'Thread::Queue' => undef, #./ext/Thread/Thread/Queue.pm
1631 'Thread::Semaphore' => undef, #./ext/Thread/Thread/Semaphore.pm
1632 'Thread::Signal' => undef, #./ext/Thread/Thread/Signal.pm
1633 'Thread::Specific' => undef, #./ext/Thread/Thread/Specific.pm
1634 'Tie::Array' => '1.01', #./lib/Tie/Array.pm
1635 'Tie::Handle' => '1.0', #./lib/Tie/Handle.pm
1636 'Tie::Hash' => undef, #./lib/Tie/Hash.pm
1637 'Tie::RefHash' => undef, #./lib/Tie/RefHash.pm
1638 'Tie::Scalar' => undef, #./lib/Tie/Scalar.pm
1639 'Tie::SubstrHash' => undef, #./lib/Tie/SubstrHash.pm
1640 'Time::Local' => undef, #./lib/Time/Local.pm
1641 'Time::gmtime' => '1.01', #./lib/Time/gmtime.pm
1642 'Time::localtime' => '1.01', #./lib/Time/localtime.pm
1643 'Time::tm' => undef, #./lib/Time/tm.pm
1644 'UNIVERSAL' => undef, #./lib/UNIVERSAL.pm
1645 'User::grent' => undef, #./lib/User/grent.pm
1646 'User::pwent' => undef, #./lib/User/pwent.pm
1647 'VMS::DCLsym' => '1.01', #./vms/ext/DCLsym/DCLsym.pm
1648 'VMS::Filespec' => undef, #./vms/ext/Filespec.pm
1649 'VMS::Stdio' => '2.2', #./vms/ext/Stdio/Stdio.pm
1650 'XSLoader' => '0.01',
1651 'attributes' => '0.03', #./lib/attributes.pm
1652 'attrs' => '1.0', #./ext/attrs/attrs.pm
1653 'autouse' => '1.02', #./lib/autouse.pm
1654 'base' => '1.01', #./lib/base.pm
1655 'blib' => '1.00', #./lib/blib.pm
1656 'bytes' => undef, #./lib/bytes.pm
1657 'charnames' => undef, #./lib/charnames.pm
1658 'constant' => '1.02', #./lib/constant.pm
1659 'diagnostics' => '1.0', #./lib/diagnostics.pm
1660 'fields' => '1.01', #./lib/fields.pm
1661 'filetest' => undef, #./lib/filetest.pm
1662 'integer' => undef, #./lib/integer.pm
1663 'less' => undef, #./lib/less.pm
1664 'lib' => '0.5564', #./lib/lib.pm
1665 'locale' => undef, #./lib/locale.pm
1666 'open' => undef, #./lib/open.pm
1667 'ops' => undef, #./ext/Opcode/ops.pm
1668 'overload' => undef, #./lib/overload.pm
1669 're' => '0.02', #./ext/re/re.pm
1670 'sigtrap' => '1.02', #./lib/sigtrap.pm
1671 'strict' => '1.01', #./lib/strict.pm
1672 'subs' => undef, #./lib/subs.pm
1673 'utf8' => undef, #./lib/utf8.pm
1674 'vars' => undef, #./lib/vars.pm
1675 'vmsish' => undef, #./vms/ext/vmsish.pm
1676 'warnings' => undef, #./lib/warnings.pm
1677 'warnings::register' => undef, #./lib/warnings/register.pm
1681 'AnyDBM_File' => undef,
1682 'attributes' => 0.03,
1684 'AutoLoader' => 5.58,
1685 'AutoSplit' => 1.0305,
1687 'B::Asmdata' => undef,
1688 'B::Assembler' => 0.02,
1689 'B::Bblock' => undef,
1690 'B::Bytecode' => undef,
1693 'B::Concise' => 0.51,
1694 'B::Debug' => undef,
1695 'B::Deparse' => 0.6,
1696 'B::Disassembler' => undef,
1699 'B::Showlex' => undef,
1700 'B::Stackobj' => undef,
1701 'B::Stash' => undef,
1702 'B::Terse' => undef,
1707 'ByteLoader' => 0.04,
1710 'Carp::Heavy' => undef,
1712 'CGI::Apache' => undef,
1713 'CGI::Carp' => '1.20',
1714 'CGI::Cookie' => 1.18,
1715 'CGI::Fast' => 1.02,
1716 'CGI::Pretty' => 1.05,
1717 'CGI::Push' => 1.04,
1718 'CGI::Switch' => undef,
1720 'charnames' => undef,
1721 'Class::Struct' => 0.59,
1724 'CPAN::FirstTime' => 1.53 ,
1725 'CPAN' => '1.59_54',
1726 'CPAN::Nox' => '1.00',
1728 'Data::Dumper' => 2.102,
1731 'Devel::DProf' => '20000000.00_00',
1732 'Devel::Peek' => '1.00_01',
1733 'Devel::SelfStubber' => 1.01,
1734 'diagnostics' => '1.0', # really v1.0, but that causes breakage
1735 'DirHandle' => undef,
1736 'Dumpvalue' => undef,
1737 'DynaLoader' => 1.04,
1740 'Exporter' => 5.562,
1741 'Exporter::Heavy' => undef,
1742 'ExtUtils::Command' => 1.01,
1743 'ExtUtils::Embed' => 1.2505,
1744 'ExtUtils::Install' => 1.28 ,
1745 'ExtUtils::Installed' => 0.02,
1746 'ExtUtils::Liblist' => 1.26 ,
1747 'ExtUtils::MakeMaker' => 5.45,
1748 'ExtUtils::Manifest' => 1.33 ,
1749 'ExtUtils::Miniperl' => undef,
1750 'ExtUtils::Mkbootstrap' => 1.14 ,
1751 'ExtUtils::Mksymlists' => 1.17 ,
1752 'ExtUtils::MM_Cygwin' => undef,
1753 'ExtUtils::MM_OS2' => undef,
1754 'ExtUtils::MM_Unix' => 1.12603 ,
1755 'ExtUtils::MM_VMS' => undef,
1756 'ExtUtils::MM_Win32' => undef,
1757 'ExtUtils::Packlist' => 0.03,
1758 'ExtUtils::testlib' => 1.11 ,
1759 'ExtUtils::XSSymSet' => '1.0',
1763 'File::Basename' => 2.6,
1764 'File::CheckTree' => undef,
1765 'File::Compare' => 1.1002,
1766 'File::Copy' => 2.03,
1767 'File::DosGlob' => undef,
1768 'File::Find' => undef,
1769 'File::Glob' => 0.991,
1770 'File::Path' => 1.0404,
1771 'File::Spec' => 0.82,
1772 'File::Spec::Epoc' => undef,
1773 'File::Spec::Functions' => 1.1,
1774 'File::Spec::Mac' => 1.2,
1775 'File::Spec::OS2' => 1.1,
1776 'File::Spec::Unix' => 1.2,
1777 'File::Spec::VMS' => 1.1,
1778 'File::Spec::Win32' => 1.2,
1779 'File::stat' => undef,
1780 'File::Temp' => 0.12,
1781 'FileCache' => undef,
1782 'FileHandle' => '2.00',
1783 'filetest' => undef,
1785 'GDBM_File' => 1.05,
1786 'Getopt::Long' => 2.25,
1787 'Getopt::Std' => 1.02,
1788 'I18N::Collate' => undef,
1793 'IO::Handle' => 1.21,
1794 'IO::Pipe' => 1.121,
1796 'IO::Seekable' => 1.08,
1797 'IO::Select' => 1.14,
1798 'IO::Socket' => 1.26,
1799 'IO::Socket::INET' => 1.25,
1800 'IO::Socket::UNIX' => '1.20',
1801 'IPC::Msg' => '1.00',
1802 'IPC::Open2' => 1.01,
1803 'IPC::Open3' => 1.0103,
1804 'IPC::Semaphore' => '1.00',
1805 'IPC::SysV' => 1.03,
1807 'JPL::AutoLoader' => undef,
1808 'JPL::Class' => undef,
1809 'JPL::Compile' => undef,
1813 'Math::BigFloat' => 0.02,
1814 'Math::BigInt' => 0.01,
1815 'Math::Complex' => 1.31,
1817 'NDBM_File' => 1.04,
1818 'Net::hostent' => undef,
1819 'Net::netent' => undef,
1820 'Net::Ping' => 2.02,
1821 'Net::protoent' => undef,
1822 'Net::servent' => undef,
1824 'ODBM_File' => 1.03,
1828 'OS2::DLL' => undef,
1829 'OS2::ExtAttr' => 0.01,
1830 'OS2::PrfDB' => 0.02,
1831 'OS2::Process' => 0.2,
1832 'OS2::REXX' => '1.00',
1833 'overload' => undef,
1834 'Pod::Checker' => 1.2,
1835 'Pod::Find' => 0.21,
1836 'Pod::Functions' => undef,
1837 'Pod::Html' => 1.03,
1838 'Pod::LaTeX' => 0.53,
1840 'Pod::InputObjects' => 1.13,
1841 'Pod::Parser' => 1.13,
1842 'Pod::ParseUtils' => 0.22,
1843 'Pod::Plainer' => 0.01,
1844 'Pod::Select' => 1.13,
1845 'Pod::Text' => 2.08,
1846 'Pod::Text::Color' => 0.06,
1847 'Pod::Text::Overstrike' => 1.01,
1848 'Pod::Text::Termcap' => 1,
1849 'Pod::Usage' => 1.14,
1853 'SDBM_File' => 1.03,
1854 'Search::Dict' => undef,
1855 'SelectSaver' => undef,
1856 'SelfLoader' => 1.0902,
1863 'Sys::Hostname' => 1.1,
1864 'Sys::Syslog' => 0.01,
1865 'Term::ANSIColor' => 1.03,
1866 'Term::Cap' => undef,
1867 'Term::Complete' => undef,
1868 'Term::ReadLine' => undef,
1870 'Test::Harness' => 1.1604,
1871 'Text::Abbrev' => undef,
1872 'Text::ParseWords' => 3.2,
1873 'Text::Soundex' => '1.0',
1874 'Text::Tabs' => 98.112801,
1875 'Text::Wrap' => 2001.0131,
1877 'Thread::Queue' => undef,
1878 'Thread::Semaphore' => undef,
1879 'Thread::Signal' => undef,
1880 'Thread::Specific' => undef,
1881 'Tie::Array' => 1.01,
1882 'Tie::Handle' => '4.0',
1883 'Tie::Hash' => undef,
1884 'Tie::RefHash' => 1.3,
1885 'Tie::Scalar' => undef,
1886 'Tie::SubstrHash' => undef,
1887 'Time::gmtime' => 1.01,
1888 'Time::Local' => undef,
1889 'Time::localtime' => 1.01,
1890 'Time::tm' => undef,
1891 'UNIVERSAL' => undef,
1892 'User::grent' => undef,
1893 'User::pwent' => undef,
1896 'VMS::DCLsym' => 1.01,
1897 'VMS::Filespec' => undef,
1898 'VMS::Stdio' => 2.2,
1900 'warnings' => undef,
1901 'warnings::register' => undef,
1902 'XSLoader' => '0.01',
1906 'AnyDBM_File' => undef, #lib/AnyDBM_File.pm
1907 'attributes' => '0.03', #lib/attributes.pm
1908 'attrs' => '1.0', #lib/attrs.pm
1909 'AutoLoader' => '5.58', #lib/AutoLoader.pm
1910 'AutoSplit' => '1.0305', #lib/AutoSplit.pm
1911 'autouse' => '1.02', #lib/autouse.pm
1912 'B' => undef, #lib/B.pm
1913 'B::Asmdata' => undef, #lib/B/Asmdata.pm
1914 'B::Assembler' => '0.02', #lib/B/Assembler.pm
1915 'B::Bblock' => undef, #lib/B/Bblock.pm
1916 'B::Bytecode' => undef, #lib/B/Bytecode.pm
1917 'B::C' => undef, #lib/B/C.pm
1918 'B::CC' => undef, #lib/B/CC.pm
1919 'B::Concise' => '0.51', #lib/B/Concise.pm
1920 'B::Debug' => undef, #lib/B/Debug.pm
1921 'B::Deparse' => '0.6', #lib/B/Deparse.pm
1922 'B::Disassembler' => undef, #lib/B/Disassembler.pm
1923 'B::Lint' => undef, #lib/B/Lint.pm
1924 'B::Showlex' => undef, #lib/B/Showlex.pm
1925 'B::Stackobj' => undef, #lib/B/Stackobj.pm
1926 'B::Stash' => undef, #lib/B/Stash.pm
1927 'B::Terse' => undef, #lib/B/Terse.pm
1928 'B::Xref' => undef, #lib/B/Xref.pm
1929 'base' => '1.01', #lib/base.pm
1930 'Benchmark' => '1', #lib/Benchmark.pm
1931 'blib' => '1.00', #lib/blib.pm
1932 'ByteLoader' => '0.04', #lib/ByteLoader.pm
1933 'bytes' => undef, #lib/bytes.pm
1934 'Carp' => undef, #lib/Carp.pm
1935 'Carp::Heavy' => undef, #lib/Carp/Heavy.pm
1936 'CGI' => '2.752', #lib/CGI.pm
1937 'CGI::Apache' => undef, #lib/CGI/Apache.pm
1938 'CGI::Carp' => '1.20', #lib/CGI/Carp.pm
1939 'CGI::Cookie' => '1.18', #lib/CGI/Cookie.pm
1940 'CGI::Fast' => '1.02', #lib/CGI/Fast.pm
1941 'CGI::Pretty' => '1.05', #lib/CGI/Pretty.pm
1942 'CGI::Push' => '1.04', #lib/CGI/Push.pm
1943 'CGI::Switch' => undef, #lib/CGI/Switch.pm
1944 'CGI::Util' => '1.1', #lib/CGI/Util.pm
1945 'charnames' => undef, #lib/charnames.pm
1946 'Class::Struct' => '0.59', #lib/Class/Struct.pm
1947 'Config' => undef, #lib/Config.pm
1948 'constant' => '1.02', #lib/constant.pm
1949 'CPAN' => '1.59_54', #lib/CPAN.pm
1950 'CPAN::FirstTime' => '1.53 ', #lib/CPAN/FirstTime.pm
1951 'CPAN::Nox' => '1.00', #lib/CPAN/Nox.pm
1952 'Cwd' => '2.04', #lib/Cwd.pm
1953 'Data::Dumper' => '2.121', #lib/Data/Dumper.pm
1954 'DB' => '1.0', #lib/DB.pm
1955 'DB_File' => '1.806', #lib/DB_File.pm
1956 'Devel::DProf' => '20000000.00_00', #lib/Devel/DProf.pm
1957 'Devel::Peek' => '1.00_01', #lib/Devel/Peek.pm
1958 'Devel::SelfStubber' => '1.01', #lib/Devel/SelfStubber.pm
1959 'diagnostics' => '1.0', #lib/diagnostics.pm
1960 'DirHandle' => undef, #lib/DirHandle.pm
1961 'Dumpvalue' => undef, #lib/Dumpvalue.pm
1962 'DynaLoader' => '1.04', #lib/DynaLoader.pm
1963 'English' => undef, #lib/English.pm
1964 'Env' => undef, #lib/Env.pm
1965 'Errno' => '1.111', #lib/Errno.pm
1966 'Exporter' => '5.562', #lib/Exporter.pm
1967 'Exporter::Heavy' => undef, #lib/Exporter/Heavy.pm
1968 'ExtUtils::Command' => '1.05', #lib/ExtUtils/Command.pm
1969 'ExtUtils::Command::MM' => '0.03', #lib/ExtUtils/Command/MM.pm
1970 'ExtUtils::Embed' => '1.2505', #lib/ExtUtils/Embed.pm
1971 'ExtUtils::Install' => '1.32', #lib/ExtUtils/Install.pm
1972 'ExtUtils::Installed' => '0.08', #lib/ExtUtils/Installed.pm
1973 'ExtUtils::Liblist' => '1.01', #lib/ExtUtils/Liblist.pm
1974 'ExtUtils::Liblist::Kid'=> '1.3', #lib/ExtUtils/Liblist/Kid.pm
1975 'ExtUtils::MakeMaker' => '6.17', #lib/ExtUtils/MakeMaker.pm
1976 'ExtUtils::MakeMaker::bytes'=> '0.01', #lib/ExtUtils/MakeMaker/bytes.pm
1977 'ExtUtils::MakeMaker::vmsish'=> '0.01', #lib/ExtUtils/MakeMaker/vmsish.pm
1978 'ExtUtils::Manifest' => '1.42', #lib/ExtUtils/Manifest.pm
1979 'ExtUtils::Miniperl' => undef, #lib/ExtUtils/Miniperl.pm
1980 'ExtUtils::Mkbootstrap' => '1.15', #lib/ExtUtils/Mkbootstrap.pm
1981 'ExtUtils::Mksymlists' => '1.19', #lib/ExtUtils/Mksymlists.pm
1982 'ExtUtils::MM' => '0.04', #lib/ExtUtils/MM.pm
1983 'ExtUtils::MM_Any' => '0.07', #lib/ExtUtils/MM_Any.pm
1984 'ExtUtils::MM_BeOS' => '1.04', #lib/ExtUtils/MM_BeOS.pm
1985 'ExtUtils::MM_Cygwin' => '1.06', #lib/ExtUtils/MM_Cygwin.pm
1986 'ExtUtils::MM_DOS' => '0.02', #lib/ExtUtils/MM_DOS.pm
1987 'ExtUtils::MM_MacOS' => '1.07', #lib/ExtUtils/MM_MacOS.pm
1988 'ExtUtils::MM_NW5' => '2.06', #lib/ExtUtils/MM_NW5.pm
1989 'ExtUtils::MM_OS2' => '1.04', #lib/ExtUtils/MM_OS2.pm
1990 'ExtUtils::MM_Unix' => '1.42', #lib/ExtUtils/MM_Unix.pm
1991 'ExtUtils::MM_UWIN' => '0.02', #lib/ExtUtils/MM_UWIN.pm
1992 'ExtUtils::MM_VMS' => '5.70', #lib/ExtUtils/MM_VMS.pm
1993 'ExtUtils::MM_Win32' => '1.09', #lib/ExtUtils/MM_Win32.pm
1994 'ExtUtils::MM_Win95' => '0.03', #lib/ExtUtils/MM_Win95.pm
1995 'ExtUtils::MY' => '0.01', #lib/ExtUtils/MY.pm
1996 'ExtUtils::Packlist' => '0.04', #lib/ExtUtils/Packlist.pm
1997 'ExtUtils::testlib' => '1.15', #lib/ExtUtils/testlib.pm
1998 'ExtUtils::XSSymSet' => '1.0', #vms/ext/XSSymSet.pm
1999 'Fatal' => '1.02', #lib/Fatal.pm
2000 'Fcntl' => '1.03', #lib/Fcntl.pm
2001 'fields' => '1.01', #lib/fields.pm
2002 'File::Basename' => '2.6', #lib/File/Basename.pm
2003 'File::CheckTree' => undef, #lib/File/CheckTree.pm
2004 'File::Compare' => '1.1002', #lib/File/Compare.pm
2005 'File::Copy' => '2.03', #lib/File/Copy.pm
2006 'File::DosGlob' => undef, #lib/File/DosGlob.pm
2007 'File::Find' => undef, #lib/File/Find.pm
2008 'File::Glob' => '0.991', #lib/File/Glob.pm
2009 'File::Path' => '1.0404', #lib/File/Path.pm
2010 'File::Spec' => '0.86', #lib/File/Spec.pm
2011 'File::Spec::Cygwin' => '1.1', #lib/File/Spec/Cygwin.pm
2012 'File::Spec::Epoc' => '1.1', #lib/File/Spec/Epoc.pm
2013 'File::Spec::Functions' => '1.3', #lib/File/Spec/Functions.pm
2014 'File::Spec::Mac' => '1.4', #lib/File/Spec/Mac.pm
2015 'File::Spec::OS2' => '1.2', #lib/File/Spec/OS2.pm
2016 'File::Spec::Unix' => '1.5', #lib/File/Spec/Unix.pm
2017 'File::Spec::VMS' => '1.4', #lib/File/Spec/VMS.pm
2018 'File::Spec::Win32' => '1.4', #lib/File/Spec/Win32.pm
2019 'File::stat' => undef, #lib/File/stat.pm
2020 'File::Temp' => '0.14', #lib/File/Temp.pm
2021 'FileCache' => undef, #lib/FileCache.pm
2022 'FileHandle' => '2.00', #lib/FileHandle.pm
2023 'filetest' => undef, #lib/filetest.pm
2024 'FindBin' => '1.42', #lib/FindBin.pm
2025 'GDBM_File' => '1.05', #ext/GDBM_File/GDBM_File.pm
2026 'Getopt::Long' => '2.25', #lib/Getopt/Long.pm
2027 'Getopt::Std' => '1.02', #lib/Getopt/Std.pm
2028 'I18N::Collate' => undef, #lib/I18N/Collate.pm
2029 'if' => '0.03', #lib/if.pm
2030 'integer' => undef, #lib/integer.pm
2031 'IO' => '1.20', #lib/IO.pm
2032 'IO::Dir' => '1.03', #lib/IO/Dir.pm
2033 'IO::File' => '1.08', #lib/IO/File.pm
2034 'IO::Handle' => '1.21', #lib/IO/Handle.pm
2035 'IO::Pipe' => '1.121', #lib/IO/Pipe.pm
2036 'IO::Poll' => '0.05', #lib/IO/Poll.pm
2037 'IO::Seekable' => '1.08', #lib/IO/Seekable.pm
2038 'IO::Select' => '1.14', #lib/IO/Select.pm
2039 'IO::Socket' => '1.26', #lib/IO/Socket.pm
2040 'IO::Socket::INET' => '1.25', #lib/IO/Socket/INET.pm
2041 'IO::Socket::UNIX' => '1.20', #lib/IO/Socket/UNIX.pm
2042 'IPC::Msg' => '1.00', #lib/IPC/Msg.pm
2043 'IPC::Open2' => '1.01', #lib/IPC/Open2.pm
2044 'IPC::Open3' => '1.0103', #lib/IPC/Open3.pm
2045 'IPC::Semaphore' => '1.00', #lib/IPC/Semaphore.pm
2046 'IPC::SysV' => '1.03', #lib/IPC/SysV.pm
2047 'JNI' => '0.1', #jpl/JNI/JNI.pm
2048 'JPL::AutoLoader' => undef, #jpl/JPL/AutoLoader.pm
2049 'JPL::Class' => undef, #jpl/JPL/Class.pm
2050 'JPL::Compile' => undef, #jpl/JPL/Compile.pm
2051 'less' => undef, #lib/less.pm
2052 'lib' => '0.5564', #lib/lib.pm
2053 'locale' => undef, #lib/locale.pm
2054 'Math::BigFloat' => '0.02', #lib/Math/BigFloat.pm
2055 'Math::BigInt' => '0.01', #lib/Math/BigInt.pm
2056 'Math::Complex' => '1.31', #lib/Math/Complex.pm
2057 'Math::Trig' => '1', #lib/Math/Trig.pm
2058 'NDBM_File' => '1.04', #ext/NDBM_File/NDBM_File.pm
2059 'Net::hostent' => undef, #lib/Net/hostent.pm
2060 'Net::netent' => undef, #lib/Net/netent.pm
2061 'Net::Ping' => '2.02', #lib/Net/Ping.pm
2062 'Net::protoent' => undef, #lib/Net/protoent.pm
2063 'Net::servent' => undef, #lib/Net/servent.pm
2064 'O' => undef, #lib/O.pm
2065 'ODBM_File' => '1.03', #ext/ODBM_File/ODBM_File.pm
2066 'Opcode' => '1.04', #lib/Opcode.pm
2067 'open' => undef, #lib/open.pm
2068 'ops' => '1.00', #lib/ops.pm
2069 'OS2::DLL' => undef, #os2/OS2/REXX/DLL/DLL.pm
2070 'OS2::ExtAttr' => '0.01', #os2/OS2/ExtAttr/ExtAttr.pm
2071 'OS2::PrfDB' => '0.02', #os2/OS2/PrfDB/PrfDB.pm
2072 'OS2::Process' => '0.2', #os2/OS2/Process/Process.pm
2073 'OS2::REXX' => '1.00', #os2/OS2/REXX/REXX.pm
2074 'overload' => undef, #lib/overload.pm
2075 'Pod::Checker' => '1.2', #lib/Pod/Checker.pm
2076 'Pod::Find' => '0.21', #lib/Pod/Find.pm
2077 'Pod::Functions' => undef, #lib/Pod/Functions.pm
2078 'Pod::Html' => '1.03', #lib/Pod/Html.pm
2079 'Pod::InputObjects' => '1.13', #lib/Pod/InputObjects.pm
2080 'Pod::LaTeX' => '0.53', #lib/Pod/LaTeX.pm
2081 'Pod::Man' => '1.15', #lib/Pod/Man.pm
2082 'Pod::Parser' => '1.13', #lib/Pod/Parser.pm
2083 'Pod::ParseUtils' => '0.22', #lib/Pod/ParseUtils.pm
2084 'Pod::Plainer' => '0.01', #lib/Pod/Plainer.pm
2085 'Pod::Select' => '1.13', #lib/Pod/Select.pm
2086 'Pod::Text' => '2.08', #lib/Pod/Text.pm
2087 'Pod::Text::Color' => '0.06', #lib/Pod/Text/Color.pm
2088 'Pod::Text::Overstrike' => '1.01', #lib/Pod/Text/Overstrike.pm
2089 'Pod::Text::Termcap' => '1', #lib/Pod/Text/Termcap.pm
2090 'Pod::Usage' => '1.14', #lib/Pod/Usage.pm
2091 'POSIX' => '1.03', #lib/POSIX.pm
2092 're' => '0.02', #lib/re.pm
2093 'Safe' => '2.10', #lib/Safe.pm
2094 'SDBM_File' => '1.03', #lib/SDBM_File.pm
2095 'Search::Dict' => undef, #lib/Search/Dict.pm
2096 'SelectSaver' => undef, #lib/SelectSaver.pm
2097 'SelfLoader' => '1.0902', #lib/SelfLoader.pm
2098 'Shell' => '0.3', #lib/Shell.pm
2099 'sigtrap' => '1.02', #lib/sigtrap.pm
2100 'Socket' => '1.72', #lib/Socket.pm
2101 'strict' => '1.01', #lib/strict.pm
2102 'subs' => undef, #lib/subs.pm
2103 'Symbol' => '1.02', #lib/Symbol.pm
2104 'Sys::Hostname' => '1.1', #lib/Sys/Hostname.pm
2105 'Sys::Syslog' => '0.01', #lib/Sys/Syslog.pm
2106 'Term::ANSIColor' => '1.03', #lib/Term/ANSIColor.pm
2107 'Term::Cap' => undef, #lib/Term/Cap.pm
2108 'Term::Complete' => undef, #lib/Term/Complete.pm
2109 'Term::ReadLine' => undef, #lib/Term/ReadLine.pm
2110 'Test' => '1.24', #lib/Test.pm
2111 'Test::Builder' => '0.17', #lib/Test/Builder.pm
2112 'Test::Harness' => '2.30', #lib/Test/Harness.pm
2113 'Test::Harness::Assert' => '0.01', #lib/Test/Harness/Assert.pm
2114 'Test::Harness::Iterator'=> '0.01', #lib/Test/Harness/Iterator.pm
2115 'Test::Harness::Straps' => '0.15', #lib/Test/Harness/Straps.pm
2116 'Test::More' => '0.47', #lib/Test/More.pm
2117 'Test::Simple' => '0.47', #lib/Test/Simple.pm
2118 'Text::Abbrev' => undef, #lib/Text/Abbrev.pm
2119 'Text::ParseWords' => '3.2', #lib/Text/ParseWords.pm
2120 'Text::Soundex' => '1.0', #lib/Text/Soundex.pm
2121 'Text::Tabs' => '98.112801', #lib/Text/Tabs.pm
2122 'Text::Wrap' => '2001.0131', #lib/Text/Wrap.pm
2123 'Thread' => '1.0', #ext/Thread/Thread.pm
2124 'Thread::Queue' => undef, #ext/Thread/Thread/Queue.pm
2125 'Thread::Semaphore' => undef, #ext/Thread/Thread/Semaphore.pm
2126 'Thread::Signal' => undef, #ext/Thread/Thread/Signal.pm
2127 'Thread::Specific' => undef, #ext/Thread/Thread/Specific.pm
2128 'Tie::Array' => '1.01', #lib/Tie/Array.pm
2129 'Tie::Handle' => '4.0', #lib/Tie/Handle.pm
2130 'Tie::Hash' => undef, #lib/Tie/Hash.pm
2131 'Tie::RefHash' => '1.3', #lib/Tie/RefHash.pm
2132 'Tie::Scalar' => undef, #lib/Tie/Scalar.pm
2133 'Tie::SubstrHash' => undef, #lib/Tie/SubstrHash.pm
2134 'Time::gmtime' => '1.01', #lib/Time/gmtime.pm
2135 'Time::Local' => undef, #lib/Time/Local.pm
2136 'Time::localtime' => '1.01', #lib/Time/localtime.pm
2137 'Time::tm' => undef, #lib/Time/tm.pm
2138 'Unicode' => '3.0.1', # lib/unicore/version
2139 'UNIVERSAL' => undef, #lib/UNIVERSAL.pm
2140 'User::grent' => undef, #lib/User/grent.pm
2141 'User::pwent' => undef, #lib/User/pwent.pm
2142 'utf8' => undef, #lib/utf8.pm
2143 'vars' => undef, #lib/vars.pm
2144 'VMS::DCLsym' => '1.01', #vms/ext/DCLsym/DCLsym.pm
2145 'VMS::Filespec' => undef, #vms/ext/Filespec.pm
2146 'VMS::Stdio' => '2.2', #vms/ext/Stdio/Stdio.pm
2147 'vmsish' => undef, #vms/ext/vmsish.pm
2148 'warnings' => undef, #lib/warnings.pm
2149 'warnings::register' => undef, #lib/warnings/register.pm
2150 'XSLoader' => '0.01', #lib/XSLoader.pm
2154 'AnyDBM_File' => '1.00',
2155 'Attribute::Handlers' => '0.76',
2156 'attributes' => '0.04_01',
2158 'AutoLoader' => '5.59',
2159 'AutoSplit' => '1.0307',
2160 'autouse' => '1.03',
2161 'B::Asmdata' => '1.00',
2162 'B::Assembler' => '0.04',
2163 'B::Bblock' => '1.00',
2164 'B::Bytecode' => '1.00',
2167 'B::Concise' => '0.52',
2168 'B::Debug' => '1.00',
2169 'B::Deparse' => '0.63',
2170 'B::Disassembler' => '1.01',
2171 'B::Lint' => '1.00',
2173 'B::Showlex' => '1.00',
2174 'B::Stackobj' => '1.00',
2175 'B::Stash' => '1.00',
2176 'B::Terse' => '1.00',
2177 'B::Xref' => '1.00',
2179 'Benchmark' => '1.04',
2181 'ByteLoader' => '0.04',
2184 'Carp::Heavy' => undef,
2186 'CGI::Apache' => '1.00',
2187 'CGI::Carp' => '1.22',
2188 'CGI::Cookie' => '1.20',
2189 'CGI::Fast' => '1.04',
2190 'CGI::Pretty' => '1.05_00',
2191 'CGI::Push' => '1.04',
2192 'CGI::Switch' => '1.00',
2193 'CGI::Util' => '1.3',
2194 'charnames' => '1.01',
2195 'Class::ISA' => '0.32',
2196 'Class::Struct' => '0.61',
2198 'constant' => '1.04',
2199 'CPAN::FirstTime' => '1.54 ',
2200 'CPAN' => '1.59_56',
2201 'CPAN::Nox' => '1.00_01',
2203 'Data::Dumper' => '2.12',
2205 'DB_File' => '1.804',
2206 'Devel::DProf' => '20000000.00_01',
2207 'Devel::Peek' => '1.00_03',
2208 'Devel::PPPort' => '2.0002',
2209 'Devel::SelfStubber' => '1.03',
2210 'diagnostics' => '1.1',
2212 'Digest::MD5' => '2.16',
2213 'DirHandle' => '1.00',
2214 'Dumpvalue' => '1.10',
2215 'DynaLoader' => 1.04,
2217 'Encode::CN' => '0.02',
2218 'Encode::CN::HZ' => undef,
2219 'Encode::Encoding' => '0.02',
2220 'Encode::Internal' => '0.30',
2221 'Encode::iso10646_1' => '0.30',
2222 'Encode::JP' => '0.02',
2223 'Encode::JP::Constants' => '1.02',
2224 'Encode::JP::H2Z' => '0.77',
2225 'Encode::JP::ISO_2022_JP' => undef,
2226 'Encode::JP::JIS' => undef,
2227 'Encode::JP::Tr' => '0.77',
2228 'Encode::KR' => '0.02',
2229 'Encode::Tcl' => '1.01',
2230 'Encode::Tcl::Escape' => '1.01',
2231 'Encode::Tcl::Extended' => '1.01',
2232 'Encode::Tcl::HanZi' => '1.01',
2233 'Encode::Tcl::Table' => '1.01',
2234 'Encode::TW' => '0.02',
2235 'Encode::Unicode' => '0.30',
2236 'Encode::usc2_le' => '0.30',
2237 'Encode::utf8' => '0.30',
2238 'Encode::XS' => '0.40',
2239 'encoding' => '1.00',
2240 'English' => '1.00',
2242 'Exporter' => '5.566',
2243 'Exporter::Heavy' => '5.562',
2244 'ExtUtils::Command' => '1.02',
2245 'ExtUtils::Constant' => '0.11',
2246 'ExtUtils::Embed' => '1.250601',
2247 'ExtUtils::Install' => '1.29',
2248 'ExtUtils::Installed' => '0.04',
2249 'ExtUtils::Liblist' => '1.2701',
2250 'ExtUtils::MakeMaker' => '5.48_03',
2251 'ExtUtils::Manifest' => '1.35',
2252 'ExtUtils::Miniperl' => undef,
2253 'ExtUtils::Mkbootstrap' => '1.1401',
2254 'ExtUtils::Mksymlists' => '1.18',
2255 'ExtUtils::MM_BeOS' => '1.00',
2256 'ExtUtils::MM_Cygwin' => '1.00',
2257 'ExtUtils::MM_OS2' => '1.00',
2258 'ExtUtils::MM_Unix' => '1.12607',
2259 'ExtUtils::MM_VMS' => '5.56',
2260 'ExtUtils::MM_Win32' => '1.00_02',
2261 'ExtUtils::Packlist' => '0.04',
2262 'ExtUtils::testlib' => '1.1201',
2263 'ExtUtils::XSSymSet' => '1.0',
2267 'File::Basename' => '2.71',
2268 'File::CheckTree' => '4.1',
2269 'File::Compare' => '1.1003',
2270 'File::Copy' => '2.05',
2271 'File::DosGlob' => '1.00',
2272 'File::Find' => '1.04',
2273 'File::Glob' => '1.01',
2274 'File::Path' => '1.05',
2275 'File::Spec' => '0.83',
2276 'File::Spec::Cygwin' => '1.0',
2277 'File::Spec::Epoc' => '1.00',
2278 'File::Spec::Functions' => '1.2',
2279 'File::Spec::Mac' => '1.3',
2280 'File::Spec::OS2' => '1.1',
2281 'File::Spec::Unix' => '1.4',
2282 'File::Spec::VMS' => '1.2',
2283 'File::Spec::Win32' => '1.3',
2284 'File::stat' => '1.00',
2285 'File::Temp' => '0.13',
2286 'FileCache' => '1.00',
2287 'FileHandle' => '2.01',
2288 'filetest' => '1.00',
2289 'Filter::Simple' => '0.77',
2290 'Filter::Util::Call' => '1.06',
2291 'FindBin' => '1.43',
2292 'GDBM_File' => '1.06',
2293 'Getopt::Long' => '2.28',
2294 'Getopt::Std' => '1.03',
2295 'I18N::Collate' => '1.00',
2296 'I18N::Langinfo' => '0.01',
2297 'I18N::LangTags' => '0.27',
2298 'I18N::LangTags::List' => '0.25',
2300 'integer' => '1.00',
2302 'IO::Dir' => '1.03_00',
2303 'IO::File' => '1.09',
2304 'IO::Handle' => '1.21_00',
2305 'IO::Pipe' => '1.122',
2306 'IO::Poll' => '0.06',
2307 'IO::Seekable' => '1.08_00',
2308 'IO::Select' => '1.15',
2309 'IO::Socket' => '1.27',
2310 'IO::Socket::INET' => '1.26',
2311 'IO::Socket::UNIX' => '1.20_00',
2312 'IPC::Msg' => '1.00_00',
2313 'IPC::Open2' => '1.01',
2314 'IPC::Open3' => '1.0104',
2315 'IPC::Semaphore' => '1.00_00',
2316 'IPC::SysV' => '1.03_00',
2318 'JPL::AutoLoader' => undef,
2319 'JPL::Class' => undef,
2320 'JPL::Compile' => undef,
2323 'List::Util' => '1.06_00',
2325 'Locale::Constants' => '2.01',
2326 'Locale::Country' => '2.01',
2327 'Locale::Currency' => '2.01',
2328 'Locale::Language' => '2.01',
2329 'Locale::Maketext' => '1.03',
2330 'Locale::Script' => '2.01',
2331 'Math::BigFloat' => '1.30',
2332 'Math::BigInt' => '1.54',
2333 'Math::BigInt::Calc' => '0.25',
2334 'Math::Complex' => '1.34',
2335 'Math::Trig' => '1.01',
2336 'Memoize' => '0.66',
2337 'Memoize::AnyDBM_File' => '0.65',
2338 'Memoize::Expire' => '0.66',
2339 'Memoize::ExpireFile' => '0.65',
2340 'Memoize::ExpireTest' => '0.65',
2341 'Memoize::NDBM_File' => '0.65',
2342 'Memoize::SDBM_File' => '0.65',
2343 'Memoize::Storable' => '0.65',
2344 'MIME::Base64' => '2.12',
2345 'MIME::QuotedPrint' => '2.03',
2346 'NDBM_File' => '1.04',
2347 'Net::Cmd' => '2.21',
2348 'Net::Config' => '1.10',
2349 'Net::Domain' => '2.17',
2350 'Net::FTP' => '2.64',
2351 'Net::FTP::A' => '1.15',
2352 'Net::FTP::dataconn' => '0.10',
2353 'Net::FTP::E' => '0.01',
2354 'Net::FTP::I' => '1.12',
2355 'Net::FTP::L' => '0.01',
2356 'Net::hostent' => '1.00',
2357 'Net::netent' => '1.00',
2358 'Net::Netrc' => '2.12',
2359 'Net::NNTP' => '2.21',
2360 'Net::Ping' => '2.12',
2361 'Net::POP3' => '2.23',
2362 'Net::protoent' => '1.00',
2363 'Net::servent' => '1.00',
2364 'Net::SMTP' => '2.21',
2365 'Net::Time' => '2.09',
2368 'ODBM_File' => '1.03',
2372 'OS2::DLL' => '1.00',
2373 'OS2::ExtAttr' => '0.01',
2374 'OS2::PrfDB' => '0.02',
2375 'OS2::Process' => '1.0',
2376 'OS2::REXX' => '1.01',
2377 'overload' => '1.00',
2379 'PerlIO::Scalar' => '0.01',
2380 'PerlIO::Via' => '0.01',
2381 'Pod::Checker' => '1.3',
2382 'Pod::Find' => '0.22',
2383 'Pod::Functions' => '1.01',
2384 'Pod::Html' => '1.04',
2385 'Pod::LaTeX' => '0.54',
2386 'Pod::Man' => '1.32',
2387 'Pod::InputObjects' => '1.13',
2388 'Pod::ParseLink' => '1.05',
2389 'Pod::Parser' => '1.13',
2390 'Pod::ParseUtils' => '0.22',
2391 'Pod::Plainer' => '0.01',
2392 'Pod::Select' => '1.13',
2393 'Pod::Text' => '2.18',
2394 'Pod::Text::Color' => '1.03',
2395 'Pod::Text::Overstrike' => '1.08',
2396 'Pod::Text::Termcap' => '1.09',
2397 'Pod::Usage' => '1.14',
2401 'Scalar::Util' => undef,
2402 'SDBM_File' => '1.03',
2403 'Search::Dict' => '1.02',
2404 'SelectSaver' => '1.00',
2405 'SelfLoader' => '1.0903',
2407 'sigtrap' => '1.02',
2410 'Storable' => '1.015',
2415 'Sys::Hostname' => '1.1',
2416 'Sys::Syslog' => '0.02',
2417 'Term::ANSIColor' => '1.04',
2418 'Term::Cap' => '1.07',
2419 'Term::Complete' => '1.4',
2420 'Term::ReadLine' => '1.00',
2422 'Test::Builder' => '0.11',
2423 'Test::Harness' => '2.01',
2424 'Test::Harness::Assert' => '0.01',
2425 'Test::Harness::Iterator'=> '0.01',
2426 'Test::Harness::Straps' => '0.08',
2427 'Test::More' => '0.41',
2428 'Test::Simple' => '0.41',
2429 'Text::Abbrev' => '1.00',
2430 'Text::Balanced' => '1.89',
2431 'Text::ParseWords' => '3.21',
2432 'Text::Soundex' => '1.01',
2433 'Text::Tabs' => '98.112801',
2434 'Text::Wrap' => '2001.0929',
2436 'Thread::Queue' => '1.00',
2437 'Thread::Semaphore' => '1.00',
2438 'Thread::Signal' => '1.00',
2439 'Thread::Specific' => '1.00',
2440 'threads' => '0.05',
2441 'threads::shared' => '0.90',
2442 'Tie::Array' => '1.02',
2443 'Tie::File' => '0.17',
2444 'Tie::Hash' => '1.00',
2445 'Tie::Handle' => '4.1',
2446 'Tie::Memoize' => '1.0',
2447 'Tie::RefHash' => '1.3_00',
2448 'Tie::Scalar' => '1.00',
2449 'Tie::SubstrHash' => '1.00',
2450 'Time::gmtime' => '1.02',
2451 'Time::HiRes' => '1.20_00',
2452 'Time::Local' => '1.04',
2453 'Time::localtime' => '1.02',
2454 'Time::tm' => '1.00',
2455 'Unicode::Collate' => '0.10',
2456 'Unicode::Normalize' => '0.14',
2457 'Unicode::UCD' => '0.2',
2458 'UNIVERSAL' => '1.00',
2459 'User::grent' => '1.00',
2460 'User::pwent' => '1.00',
2463 'VMS::DCLsym' => '1.02',
2464 'VMS::Filespec' => '1.1',
2465 'VMS::Stdio' => '2.3',
2467 'warnings' => '1.00',
2468 'warnings::register' => '1.00',
2469 'XS::Typemap' => '0.01',
2470 'XSLoader' => '0.01',
2474 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm
2475 'Attribute::Handlers' => '0.77', #./lib/Attribute/Handlers.pm
2476 'attributes' => '0.05', #./lib/attributes.pm
2477 'attrs' => '1.01', #./ext/attrs/attrs.pm
2478 'AutoLoader' => '5.59', #./lib/AutoLoader.pm
2479 'AutoSplit' => '1.0307', #./lib/AutoSplit.pm
2480 'autouse' => '1.03', #./lib/autouse.pm
2481 'B' => '1.01', #./ext/B/B.pm
2482 'B::Asmdata' => '1.00', #./ext/B/B/Asmdata.pm
2483 'B::Assembler' => '0.04', #./ext/B/B/Assembler.pm
2484 'B::Bblock' => '1.00', #./ext/B/B/Bblock.pm
2485 'B::Bytecode' => '1.00', #./ext/B/B/Bytecode.pm
2486 'B::C' => '1.01', #./ext/B/B/C.pm
2487 'B::CC' => '1.00', #./ext/B/B/CC.pm
2488 'B::Concise' => '0.52', #./ext/B/B/Concise.pm
2489 'B::Debug' => '1.00', #./ext/B/B/Debug.pm
2490 'B::Deparse' => '0.63', #./ext/B/B/Deparse.pm
2491 'B::Disassembler' => '1.01', #./ext/B/B/Disassembler.pm
2492 'B::Lint' => '1.01', #./ext/B/B/Lint.pm
2493 'B::Showlex' => '1.00', #./ext/B/B/Showlex.pm
2494 'B::Stackobj' => '1.00', #./ext/B/B/Stackobj.pm
2495 'B::Stash' => '1.00', #./ext/B/B/Stash.pm
2496 'B::Terse' => '1.00', #./ext/B/B/Terse.pm
2497 'B::Xref' => '1.01', #./ext/B/B/Xref.pm
2498 'base' => '1.03', #./lib/base.pm
2499 'Benchmark' => '1.04', #./lib/Benchmark.pm
2500 'bigint' => '0.02', #./lib/bigint.pm
2501 'bignum' => '0.11', #./lib/bignum.pm
2502 'bigrat' => '0.04', #./lib/bigrat.pm
2503 'blib' => '1.02', #./lib/blib.pm
2504 'ByteLoader' => '0.04', #./ext/ByteLoader/ByteLoader.pm
2505 'bytes' => '1.00', #./lib/bytes.pm
2506 'Carp' => '1.01', #./lib/Carp.pm
2507 'Carp::Heavy' => 'undef', #./lib/Carp/Heavy.pm
2508 'CGI' => '2.81', #./lib/CGI.pm
2509 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm
2510 'CGI::Carp' => '1.23', #./lib/CGI/Carp.pm
2511 'CGI::Cookie' => '1.20', #./lib/CGI/Cookie.pm
2512 'CGI::Fast' => '1.04', #./lib/CGI/Fast.pm
2513 'CGI::Pretty' => '1.05_00', #./lib/CGI/Pretty.pm
2514 'CGI::Push' => '1.04', #./lib/CGI/Push.pm
2515 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm
2516 'CGI::Util' => '1.3', #./lib/CGI/Util.pm
2517 'charnames' => '1.01', #./lib/charnames.pm
2518 'Class::ISA' => '0.32', #./lib/Class/ISA.pm
2519 'Class::Struct' => '0.61', #./lib/Class/Struct.pm
2520 'constant' => '1.04', #./lib/constant.pm
2522 'CPAN' => '1.61', #./lib/CPAN.pm
2523 'CPAN::FirstTime' => '1.56 ', #./lib/CPAN/FirstTime.pm
2524 'CPAN::Nox' => '1.02', #./lib/CPAN/Nox.pm
2525 'Cwd' => '2.06', #./lib/Cwd.pm
2526 'Data::Dumper' => '2.12', #./ext/Data/Dumper/Dumper.pm
2527 'DB' => '1.0', #./lib/DB.pm
2528 'DB_File' => '1.804', #./ext/DB_File/DB_File.pm
2529 'Devel::DProf' => '20000000.00_01', #./ext/Devel/DProf/DProf.pm
2530 'Devel::Peek' => '1.00_03', #./ext/Devel/Peek/Peek.pm
2531 'Devel::PPPort' => '2.0002', #./ext/Devel/PPPort/PPPort.pm
2532 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm
2533 'diagnostics' => '1.1', #./lib/diagnostics.pm
2534 'Digest' => '1.00', #./lib/Digest.pm
2535 'Digest::MD5' => '2.20', #./ext/Digest/MD5/MD5.pm
2536 'DirHandle' => '1.00', #./lib/DirHandle.pm
2537 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm
2538 'DynaLoader' => '1.04',
2539 'Encode' => '1.75', #./ext/Encode/Encode.pm
2540 'Encode::Alias' => '1.32', #./ext/Encode/lib/Encode/Alias.pm
2541 'Encode::Byte' => '1.22', #./ext/Encode/Byte/Byte.pm
2542 'Encode::CJKConstants' => '1.00', #./ext/Encode/lib/Encode/CJKConstants.pm
2543 'Encode::CN' => '1.24', #./ext/Encode/CN/CN.pm
2544 'Encode::CN::HZ' => '1.04', #./ext/Encode/lib/Encode/CN/HZ.pm
2545 'Encode::Config' => '1.06', #./ext/Encode/lib/Encode/Config.pm
2546 'Encode::EBCDIC' => '1.21', #./ext/Encode/EBCDIC/EBCDIC.pm
2547 'Encode::Encoder' => '0.05', #./ext/Encode/lib/Encode/Encoder.pm
2548 'Encode::Encoding' => '1.30', #./ext/Encode/lib/Encode/Encoding.pm
2549 'Encode::Guess' => '1.06', #./ext/Encode/lib/Encode/Guess.pm
2550 'Encode::JP::H2Z' => '1.02', #./ext/Encode/lib/Encode/JP/H2Z.pm
2551 'Encode::JP::JIS7' => '1.08', #./ext/Encode/lib/Encode/JP/JIS7.pm
2552 'Encode::JP' => '1.25', #./ext/Encode/JP/JP.pm
2553 'Encode::KR' => '1.22', #./ext/Encode/KR/KR.pm
2554 'Encode::KR::2022_KR' => '1.05', #./ext/Encode/lib/Encode/KR/2022_KR.pm
2555 'Encode::MIME::Header' => '1.05', #./ext/Encode/lib/Encode/MIME/Header.pm
2556 'Encode::Symbol' => '1.22', #./ext/Encode/Symbol/Symbol.pm
2557 'Encode::TW' => '1.26', #./ext/Encode/TW/TW.pm
2558 'Encode::Unicode' => '1.37', #./ext/Encode/Unicode/Unicode.pm
2559 'encoding' => '1.35', #./ext/Encode/encoding.pm
2560 'English' => '1.00', #./lib/English.pm
2561 'Env' => '1.00', #./lib/Env.pm
2562 'Exporter' => '5.566', #./lib/Exporter.pm
2563 'Exporter::Heavy' => '5.566', #./lib/Exporter/Heavy.pm
2564 'ExtUtils::Command' => '1.04', #./lib/ExtUtils/Command.pm
2565 'ExtUtils::Command::MM' => '0.01', #./lib/ExtUtils/Command/MM.pm
2566 'ExtUtils::Constant' => '0.12', #./lib/ExtUtils/Constant.pm
2567 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm
2568 'ExtUtils::Install' => '1.29', #./lib/ExtUtils/Install.pm
2569 'ExtUtils::Installed' => '0.06', #./lib/ExtUtils/Installed.pm
2570 'ExtUtils::Liblist' => '1.00', #./lib/ExtUtils/Liblist.pm
2571 'ExtUtils::Liblist::Kid'=> '1.29', #./lib/ExtUtils/Liblist/Kid.pm
2572 'ExtUtils::MakeMaker' => '6.03', #./lib/ExtUtils/MakeMaker.pm
2573 'ExtUtils::Manifest' => '1.38', #./lib/ExtUtils/Manifest.pm
2574 'ExtUtils::Miniperl' => undef,
2575 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2576 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm
2577 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm
2578 'ExtUtils::MM_Any' => '0.04', #./lib/ExtUtils/MM_Any.pm
2579 'ExtUtils::MM_BeOS' => '1.03', #./lib/ExtUtils/MM_BeOS.pm
2580 'ExtUtils::MM_Cygwin' => '1.04', #./lib/ExtUtils/MM_Cygwin.pm
2581 'ExtUtils::MM_DOS' => '0.01', #./lib/ExtUtils/MM_DOS.pm
2582 'ExtUtils::MM_MacOS' => '1.03', #./lib/ExtUtils/MM_MacOS.pm
2583 'ExtUtils::MM_NW5' => '2.05', #./lib/ExtUtils/MM_NW5.pm
2584 'ExtUtils::MM_OS2' => '1.03', #./lib/ExtUtils/MM_OS2.pm
2585 'ExtUtils::MM_Unix' => '1.33', #./lib/ExtUtils/MM_Unix.pm
2586 'ExtUtils::MM_UWIN' => '0.01', #./lib/ExtUtils/MM_UWIN.pm
2587 'ExtUtils::MM_VMS' => '5.65', #./lib/ExtUtils/MM_VMS.pm
2588 'ExtUtils::MM_Win32' => '1.05', #./lib/ExtUtils/MM_Win32.pm
2589 'ExtUtils::MM_Win95' => '0.02', #./lib/ExtUtils/MM_Win95.pm
2590 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm
2591 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm
2592 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm
2593 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
2594 'Fatal' => '1.03', #./lib/Fatal.pm
2595 'Fcntl' => '1.04', #./ext/Fcntl/Fcntl.pm
2596 'fields' => '1.02', #./lib/fields.pm
2597 'File::Basename' => '2.71', #./lib/File/Basename.pm
2598 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm
2599 'File::Compare' => '1.1003', #./lib/File/Compare.pm
2600 'File::Copy' => '2.05', #./lib/File/Copy.pm
2601 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm
2602 'File::Find' => '1.04', #./lib/File/Find.pm
2603 'File::Glob' => '1.01', #./ext/File/Glob/Glob.pm
2604 'File::Path' => '1.05', #./lib/File/Path.pm
2605 'File::Spec' => '0.83', #./lib/File/Spec.pm
2606 'File::Spec::Cygwin' => '1.0', #./lib/File/Spec/Cygwin.pm
2607 'File::Spec::Epoc' => '1.00', #./lib/File/Spec/Epoc.pm
2608 'File::Spec::Functions' => '1.2', #./lib/File/Spec/Functions.pm
2609 'File::Spec::Mac' => '1.3', #./lib/File/Spec/Mac.pm
2610 'File::Spec::OS2' => '1.1', #./lib/File/Spec/OS2.pm
2611 'File::Spec::Unix' => '1.4', #./lib/File/Spec/Unix.pm
2612 'File::Spec::VMS' => '1.2', #./lib/File/Spec/VMS.pm
2613 'File::Spec::Win32' => '1.3', #./lib/File/Spec/Win32.pm
2614 'File::stat' => '1.00', #./lib/File/stat.pm
2615 'File::Temp' => '0.13', #./lib/File/Temp.pm
2616 'FileCache' => '1.021', #./lib/FileCache.pm
2617 'FileHandle' => '2.01', #./lib/FileHandle.pm
2618 'filetest' => '1.00', #./lib/filetest.pm
2619 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm
2620 'Filter::Util::Call' => '1.06', #./ext/Filter/Util/Call/Call.pm
2621 'FindBin' => '1.43', #./lib/FindBin.pm
2622 'GDBM_File' => '1.06', #./ext/GDBM_File/GDBM_File.pm
2623 'Getopt::Long' => '2.32', #./lib/Getopt/Long.pm
2624 'Getopt::Std' => '1.03', #./lib/Getopt/Std.pm
2625 'Hash::Util' => '0.04', #./lib/Hash/Util.pm
2626 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm
2627 'I18N::Langinfo' => '0.01', #./ext/I18N/Langinfo/Langinfo.pm
2628 'I18N::LangTags' => '0.27', #./lib/I18N/LangTags.pm
2629 'I18N::LangTags::List' => '0.25', #./lib/I18N/LangTags/List.pm
2630 'if' => '0.01', #./lib/if.pm
2631 'integer' => '1.00', #./lib/integer.pm
2632 'IO' => '1.20', #./ext/IO/IO.pm
2633 'IO::Dir' => '1.03_00', #./ext/IO/lib/IO/Dir.pm
2634 'IO::File' => '1.09', #./ext/IO/lib/IO/File.pm
2635 'IO::Handle' => '1.21_00', #./ext/IO/lib/IO/Handle.pm
2636 'IO::Pipe' => '1.122', #./ext/IO/lib/IO/Pipe.pm
2637 'IO::Poll' => '0.06', #./ext/IO/lib/IO/Poll.pm
2638 'IO::Seekable' => '1.08_00', #./ext/IO/lib/IO/Seekable.pm
2639 'IO::Select' => '1.15', #./ext/IO/lib/IO/Select.pm
2640 'IO::Socket' => '1.27', #./ext/IO/lib/IO/Socket.pm
2641 'IO::Socket::INET' => '1.26', #./ext/IO/lib/IO/Socket/INET.pm
2642 'IO::Socket::UNIX' => '1.20_00', #./ext/IO/lib/IO/Socket/UNIX.pm
2643 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
2644 'IPC::Open3' => '1.0104', #./lib/IPC/Open3.pm
2645 'IPC::Msg' => '1.00_00', #./ext/IPC/SysV/Msg.pm
2646 'IPC::Semaphore' => '1.00_00', #./ext/IPC/SysV/Semaphore.pm
2647 'IPC::SysV' => '1.03_00', #./ext/IPC/SysV/SysV.pm
2648 'JNI' => '0.1', #./jpl/JNI/JNI.pm
2649 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
2650 'JPL::Class' => undef, #./jpl/JPL/Class.pm
2651 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
2652 'less' => '0.01', #./lib/less.pm
2654 'List::Util' => '1.07_00', #./ext/List/Util/lib/List/Util.pm
2655 'locale' => '1.00', #./lib/locale.pm
2656 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm
2657 'Locale::Country' => '2.04', #./lib/Locale/Country.pm
2658 'Locale::Currency' => '2.01', #./lib/Locale/Currency.pm
2659 'Locale::Language' => '2.01', #./lib/Locale/Language.pm
2660 'Locale::Maketext' => '1.03', #./lib/Locale/Maketext.pm
2661 'Locale::Script' => '2.01', #./lib/Locale/Script.pm
2662 'Math::BigFloat' => '1.35', #./lib/Math/BigFloat.pm
2663 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
2664 'Math::BigInt' => '1.60', #./lib/Math/BigInt.pm
2665 'Math::BigInt::Calc' => '0.30', #./lib/Math/BigInt/Calc.pm
2666 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm
2667 'Math::BigRat' => '0.07', #./lib/Math/BigRat.pm
2668 'Math::Complex' => '1.34', #./lib/Math/Complex.pm
2669 'Math::Trig' => '1.01', #./lib/Math/Trig.pm
2670 'Memoize' => '1.01', #./lib/Memoize.pm
2671 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm
2672 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm
2673 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm
2674 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm
2675 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm
2676 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm
2677 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm
2678 'MIME::Base64' => '2.12', #./ext/MIME/Base64/Base64.pm
2679 'MIME::QuotedPrint' => '2.03', #./ext/MIME/Base64/QuotedPrint.pm
2680 'NDBM_File' => '1.04', #./ext/NDBM_File/NDBM_File.pm
2681 'Net::Cmd' => '2.21', #./lib/Net/Cmd.pm
2682 'Net::Config' => '1.10', #./lib/Net/Config.pm
2683 'Net::Domain' => '2.17', #./lib/Net/Domain.pm
2684 'Net::FTP' => '2.65', #./lib/Net/FTP.pm
2685 'Net::FTP::A' => '1.15', #./lib/Net/FTP/A.pm
2686 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm
2687 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm
2688 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm
2689 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm
2690 'Net::hostent' => '1.00', #./lib/Net/hostent.pm
2691 'Net::netent' => '1.00', #./lib/Net/netent.pm
2692 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm
2693 'Net::NNTP' => '2.21', #./lib/Net/NNTP.pm
2694 'Net::Ping' => '2.19', #./lib/Net/Ping.pm
2695 'Net::POP3' => '2.23', #./lib/Net/POP3.pm
2696 'Net::protoent' => '1.00', #./lib/Net/protoent.pm
2697 'Net::servent' => '1.00', #./lib/Net/servent.pm
2698 'Net::SMTP' => '2.24', #./lib/Net/SMTP.pm
2699 'Net::Time' => '2.09', #./lib/Net/Time.pm
2700 'NEXT' => '0.50', #./lib/NEXT.pm
2701 'O' => '1.00', #./ext/B/O.pm
2702 'ODBM_File' => '1.03', #./ext/ODBM_File/ODBM_File.pm
2703 'Opcode' => '1.05', #./ext/Opcode/Opcode.pm
2704 'open' => '1.01', #./lib/open.pm
2705 'ops' => '1.00', #./ext/Opcode/ops.pm
2706 'OS2::DLL' => '1.00', #./os2/OS2/REXX/DLL/DLL.pm
2707 'OS2::ExtAttr' => '0.01', #./os2/OS2/ExtAttr/ExtAttr.pm
2708 'OS2::PrfDB' => '0.02', #./os2/OS2/PrfDB/PrfDB.pm
2709 'OS2::Process' => '1.0', #./os2/OS2/Process/Process.pm
2710 'OS2::REXX' => '1.01', #./os2/OS2/REXX/REXX.pm
2711 'overload' => '1.00', #./lib/overload.pm
2712 'PerlIO' => '1.01', #./lib/PerlIO.pm
2713 'PerlIO::encoding' => '0.06', #./ext/PerlIO/encoding/encoding.pm
2714 'PerlIO::scalar' => '0.01', #./ext/PerlIO/scalar/scalar.pm
2715 'PerlIO::via' => '0.01', #./ext/PerlIO/via/via.pm
2716 'PerlIO::via::QuotedPrint'=> '0.04', #./lib/PerlIO/via/QuotedPrint.pm
2717 'Pod::Checker' => '1.3', #./lib/Pod/Checker.pm
2718 'Pod::Find' => '0.22', #./lib/Pod/Find.pm
2719 'Pod::Functions' => '1.01', #./lib/Pod/Functions.pm
2720 'Pod::Html' => '1.04', #./lib/Pod/Html.pm
2721 'Pod::InputObjects' => '1.13', #./lib/Pod/InputObjects.pm
2722 'Pod::LaTeX' => '0.54', #./lib/Pod/LaTeX.pm
2723 'Pod::Man' => '1.33', #./lib/Pod/Man.pm
2724 'Pod::ParseLink' => '1.05', #./lib/Pod/ParseLink.pm
2725 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm
2726 'Pod::ParseUtils' => '0.22', #./lib/Pod/ParseUtils.pm
2727 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
2728 'Pod::Select' => '1.13', #./lib/Pod/Select.pm
2729 'Pod::Text' => '2.19', #./lib/Pod/Text.pm
2730 'Pod::Text::Color' => '1.03', #./lib/Pod/Text/Color.pm
2731 'Pod::Text::Overstrike' => '1.08', #./lib/Pod/Text/Overstrike.pm
2732 'Pod::Text::Termcap' => '1.09', #./lib/Pod/Text/Termcap.pm
2733 'Pod::Usage' => '1.14', #./lib/Pod/Usage.pm
2734 'POSIX' => '1.05', #./ext/POSIX/POSIX.pm
2735 're' => '0.03', #./ext/re/re.pm
2736 'Safe' => '2.07', #./ext/Opcode/Safe.pm
2737 'Scalar::Util' => 'undef', #./ext/List/Util/lib/Scalar/Util.pm
2738 'SDBM_File' => '1.03', #./ext/SDBM_File/SDBM_File.pm
2739 'Search::Dict' => '1.02', #./lib/Search/Dict.pm
2740 'SelectSaver' => '1.00', #./lib/SelectSaver.pm
2741 'SelfLoader' => '1.0903', #./lib/SelfLoader.pm
2742 'Shell' => '0.4', #./lib/Shell.pm
2743 'sigtrap' => '1.02', #./lib/sigtrap.pm
2744 'Socket' => '1.75', #./ext/Socket/Socket.pm
2745 'sort' => '1.01', #./lib/sort.pm
2746 'Storable' => '2.04', #./ext/Storable/Storable.pm
2747 'strict' => '1.02', #./lib/strict.pm
2748 'subs' => '1.00', #./lib/subs.pm
2749 'Switch' => '2.09', #./lib/Switch.pm
2750 'Symbol' => '1.04', #./lib/Symbol.pm
2751 'Sys::Hostname' => '1.1', #./ext/Sys/Hostname/Hostname.pm
2752 'Sys::Syslog' => '0.03', #./ext/Sys/Syslog/Syslog.pm
2753 'Term::ANSIColor' => '1.04', #./lib/Term/ANSIColor.pm
2754 'Term::Cap' => '1.07', #./lib/Term/Cap.pm
2755 'Term::Complete' => '1.4', #./lib/Term/Complete.pm
2756 'Term::ReadLine' => '1.00', #./lib/Term/ReadLine.pm
2757 'Test' => '1.20', #./lib/Test.pm
2758 'Test::Builder' => '0.15', #./lib/Test/Builder.pm
2759 'Test::Harness' => '2.26', #./lib/Test/Harness.pm
2760 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
2761 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
2762 'Test::Harness::Straps' => '0.14', #./lib/Test/Harness/Straps.pm
2763 'Test::More' => '0.45', #./lib/Test/More.pm
2764 'Test::Simple' => '0.45', #./lib/Test/Simple.pm
2765 'Text::Abbrev' => '1.00', #./lib/Text/Abbrev.pm
2766 'Text::Balanced' => '1.89', #./lib/Text/Balanced.pm
2767 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm
2768 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm
2769 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
2770 'Text::Wrap' => '2001.0929', #./lib/Text/Wrap.pm
2771 'Thread' => '2.00', #./lib/Thread.pm
2772 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm
2773 'Thread::Semaphore' => '2.00', #./lib/Thread/Semaphore.pm
2774 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
2775 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
2776 'threads' => '0.99', #./ext/threads/threads.pm
2777 'threads::shared' => '0.90', #./ext/threads/shared/shared.pm
2778 'Tie::Array' => '1.02', #./lib/Tie/Array.pm
2779 'Tie::File' => '0.93', #./lib/Tie/File.pm
2780 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm
2781 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm
2782 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm
2783 'Tie::RefHash' => '1.30', #./lib/Tie/RefHash.pm
2784 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm
2785 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm
2786 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm
2787 'Time::HiRes' => '1.20_00', #./ext/Time/HiRes/HiRes.pm
2788 'Time::Local' => '1.04', #./lib/Time/Local.pm
2789 'Time::localtime' => '1.02', #./lib/Time/localtime.pm
2790 'Time::tm' => '1.00', #./lib/Time/tm.pm
2791 'Unicode' => '3.2.0', # lib/unicore/version
2792 'Unicode::Collate' => '0.12', #./lib/Unicode/Collate.pm
2793 'Unicode::Normalize' => '0.17', #./ext/Unicode/Normalize/Normalize.pm
2794 'Unicode::UCD' => '0.2', #./lib/Unicode/UCD.pm
2795 'UNIVERSAL' => '1.00', #./lib/UNIVERSAL.pm
2796 'User::grent' => '1.00', #./lib/User/grent.pm
2797 'User::pwent' => '1.00', #./lib/User/pwent.pm
2798 'utf8' => '1.00', #./lib/utf8.pm
2799 'vars' => '1.01', #./lib/vars.pm
2800 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm
2801 'VMS::Filespec' => '1.1', #./vms/ext/Filespec.pm
2802 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm
2803 'vmsish' => '1.00', #./lib/vmsish.pm
2804 'warnings' => '1.00', #./lib/warnings.pm
2805 'warnings::register' => '1.00', #./lib/warnings/register.pm
2806 'XS::APItest' => '0.01', #./ext/XS/APItest/APItest.pm
2807 'XS::Typemap' => '0.01', #./ext/XS/Typemap/Typemap.pm
2808 'XSLoader' => '0.01',
2812 'AnyDBM_File' => '1.00', #./lib/AnyDBM_File.pm
2813 'Attribute::Handlers' => '0.78', #./lib/Attribute/Handlers.pm
2814 'attributes' => '0.06', #./lib/attributes.pm
2815 'attrs' => '1.01', #./lib/attrs.pm
2816 'AutoLoader' => '5.60', #./lib/AutoLoader.pm
2817 'AutoSplit' => '1.04', #./lib/AutoSplit.pm
2818 'autouse' => '1.03', #./lib/autouse.pm
2819 'B' => '1.02', #./lib/B.pm
2820 'B::Asmdata' => '1.01', #./lib/B/Asmdata.pm
2821 'B::Assembler' => '0.06', #./lib/B/Assembler.pm
2822 'B::Bblock' => '1.02', #./lib/B/Bblock.pm
2823 'B::Bytecode' => '1.01', #./lib/B/Bytecode.pm
2824 'B::C' => '1.02', #./lib/B/C.pm
2825 'B::CC' => '1.00', #./lib/B/CC.pm
2826 'B::Concise' => '0.56', #./lib/B/Concise.pm
2827 'B::Debug' => '1.01', #./lib/B/Debug.pm
2828 'B::Deparse' => '0.64', #./lib/B/Deparse.pm
2829 'B::Disassembler' => '1.03', #./lib/B/Disassembler.pm
2830 'B::Lint' => '1.02', #./lib/B/Lint.pm
2831 'B::Showlex' => '1.00', #./lib/B/Showlex.pm
2832 'B::Stackobj' => '1.00', #./lib/B/Stackobj.pm
2833 'B::Stash' => '1.00', #./lib/B/Stash.pm
2834 'B::Terse' => '1.02', #./lib/B/Terse.pm
2835 'B::Xref' => '1.01', #./lib/B/Xref.pm
2836 'base' => '2.03', #./lib/base.pm
2837 'Benchmark' => '1.051', #./lib/Benchmark.pm
2838 'bigint' => '0.04', #./lib/bigint.pm
2839 'bignum' => '0.14', #./lib/bignum.pm
2840 'bigrat' => '0.06', #./lib/bigrat.pm
2841 'blib' => '1.02', #./lib/blib.pm
2842 'ByteLoader' => '0.05', #./lib/ByteLoader.pm
2843 'bytes' => '1.01', #./lib/bytes.pm
2844 'Carp' => '1.01', #./lib/Carp.pm
2845 'Carp::Heavy' => '1.01', #./lib/Carp/Heavy.pm
2846 'CGI' => '3.00', #./lib/CGI.pm
2847 'CGI::Apache' => '1.00', #./lib/CGI/Apache.pm
2848 'CGI::Carp' => '1.26', #./lib/CGI/Carp.pm
2849 'CGI::Cookie' => '1.24', #./lib/CGI/Cookie.pm
2850 'CGI::Fast' => '1.041', #./lib/CGI/Fast.pm
2851 'CGI::Pretty' => '1.07_00', #./lib/CGI/Pretty.pm
2852 'CGI::Push' => '1.04', #./lib/CGI/Push.pm
2853 'CGI::Switch' => '1.00', #./lib/CGI/Switch.pm
2854 'CGI::Util' => '1.31', #./lib/CGI/Util.pm
2855 'charnames' => '1.02', #./lib/charnames.pm
2856 'Class::ISA' => '0.32', #./lib/Class/ISA.pm
2857 'Class::Struct' => '0.63', #./lib/Class/Struct.pm
2858 'Config' => undef, #./lib/Config.pm
2859 'constant' => '1.04', #./lib/constant.pm
2860 'CPAN' => '1.76_01', #./lib/CPAN.pm
2861 'CPAN::FirstTime' => '1.60 ', #./lib/CPAN/FirstTime.pm
2862 'CPAN::Nox' => '1.03', #./lib/CPAN/Nox.pm
2863 'Cwd' => '2.08', #./lib/Cwd.pm
2864 'Data::Dumper' => '2.121', #./lib/Data/Dumper.pm
2865 'DB' => '1.0', #./lib/DB.pm
2866 'DB_File' => '1.806', #./lib/DB_File.pm
2867 'Devel::DProf' => '20030813.00', #./lib/Devel/DProf.pm
2868 'Devel::Peek' => '1.01', #./lib/Devel/Peek.pm
2869 'Devel::PPPort' => '2.007', #./lib/Devel/PPPort.pm
2870 'Devel::SelfStubber' => '1.03', #./lib/Devel/SelfStubber.pm
2871 'diagnostics' => '1.11', #./lib/diagnostics.pm
2872 'Digest' => '1.02', #./lib/Digest.pm
2873 'Digest::MD5' => '2.27', #./lib/Digest/MD5.pm
2874 'DirHandle' => '1.00', #./lib/DirHandle.pm
2875 'Dumpvalue' => '1.11', #./lib/Dumpvalue.pm
2876 'DynaLoader' => '1.04', #./lib/DynaLoader.pm
2877 'Encode' => '1.9801', #./lib/Encode.pm
2878 'Encode::Alias' => '1.38', #./lib/Encode/Alias.pm
2879 'Encode::Byte' => '1.23', #./lib/Encode/Byte.pm
2880 'Encode::CJKConstants' => '1.02', #./lib/Encode/CJKConstants.pm
2881 'Encode::CN' => '1.24', #./lib/Encode/CN.pm
2882 'Encode::CN::HZ' => '1.05', #./lib/Encode/CN/HZ.pm
2883 'Encode::Config' => '1.07', #./lib/Encode/Config.pm
2884 'Encode::EBCDIC' => '1.21', #./lib/Encode/EBCDIC.pm
2885 'Encode::Encoder' => '0.07', #./lib/Encode/Encoder.pm
2886 'Encode::Encoding' => '1.33', #./lib/Encode/Encoding.pm
2887 'Encode::Guess' => '1.09', #./lib/Encode/Guess.pm
2888 'Encode::JP' => '1.25', #./lib/Encode/JP.pm
2889 'Encode::JP::H2Z' => '1.02', #./lib/Encode/JP/H2Z.pm
2890 'Encode::JP::JIS7' => '1.12', #./lib/Encode/JP/JIS7.pm
2891 'Encode::KR' => '1.23', #./lib/Encode/KR.pm
2892 'Encode::KR::2022_KR' => '1.06', #./lib/Encode/KR/2022_KR.pm
2893 'Encode::MIME::Header' => '1.09', #./lib/Encode/MIME/Header.pm
2894 'Encode::Symbol' => '1.22', #./lib/Encode/Symbol.pm
2895 'Encode::TW' => '1.26', #./lib/Encode/TW.pm
2896 'Encode::Unicode' => '1.40', #./lib/Encode/Unicode.pm
2897 'Encode::Unicode::UTF7' => '0.02', #./lib/Encode/Unicode/UTF7.pm
2898 'encoding' => '1.47', #./lib/encoding.pm
2899 'English' => '1.01', #./lib/English.pm
2900 'Env' => '1.00', #./lib/Env.pm
2901 'Errno' => '1.09_00', #./lib/Errno.pm
2902 'Exporter' => '5.567', #./lib/Exporter.pm
2903 'Exporter::Heavy' => '5.567', #./lib/Exporter/Heavy.pm
2904 'ExtUtils::Command' => '1.05', #./lib/ExtUtils/Command.pm
2905 'ExtUtils::Command::MM' => '0.03', #./lib/ExtUtils/Command/MM.pm
2906 'ExtUtils::Constant' => '0.14', #./lib/ExtUtils/Constant.pm
2907 'ExtUtils::Embed' => '1.250601', #./lib/ExtUtils/Embed.pm
2908 'ExtUtils::Install' => '1.32', #./lib/ExtUtils/Install.pm
2909 'ExtUtils::Installed' => '0.08', #./lib/ExtUtils/Installed.pm
2910 'ExtUtils::Liblist' => '1.01', #./lib/ExtUtils/Liblist.pm
2911 'ExtUtils::Liblist::Kid'=> '1.3', #./lib/ExtUtils/Liblist/Kid.pm
2912 'ExtUtils::MakeMaker' => '6.17', #./lib/ExtUtils/MakeMaker.pm
2913 'ExtUtils::MakeMaker::bytes'=> '0.01', #./lib/ExtUtils/MakeMaker/bytes.pm
2914 'ExtUtils::MakeMaker::vmsish'=> '0.01', #./lib/ExtUtils/MakeMaker/vmsish.pm
2915 'ExtUtils::Manifest' => '1.42', #./lib/ExtUtils/Manifest.pm
2916 'ExtUtils::Miniperl' => undef, #./lib/ExtUtils/Miniperl.pm
2917 'ExtUtils::Mkbootstrap' => '1.15', #./lib/ExtUtils/Mkbootstrap.pm
2918 'ExtUtils::Mksymlists' => '1.19', #./lib/ExtUtils/Mksymlists.pm
2919 'ExtUtils::MM' => '0.04', #./lib/ExtUtils/MM.pm
2920 'ExtUtils::MM_Any' => '0.07', #./lib/ExtUtils/MM_Any.pm
2921 'ExtUtils::MM_BeOS' => '1.04', #./lib/ExtUtils/MM_BeOS.pm
2922 'ExtUtils::MM_Cygwin' => '1.06', #./lib/ExtUtils/MM_Cygwin.pm
2923 'ExtUtils::MM_DOS' => '0.02', #./lib/ExtUtils/MM_DOS.pm
2924 'ExtUtils::MM_MacOS' => '1.07', #./lib/ExtUtils/MM_MacOS.pm
2925 'ExtUtils::MM_NW5' => '2.06', #./lib/ExtUtils/MM_NW5.pm
2926 'ExtUtils::MM_OS2' => '1.04', #./lib/ExtUtils/MM_OS2.pm
2927 'ExtUtils::MM_Unix' => '1.42', #./lib/ExtUtils/MM_Unix.pm
2928 'ExtUtils::MM_UWIN' => '0.02', #./lib/ExtUtils/MM_UWIN.pm
2929 'ExtUtils::MM_VMS' => '5.70', #./lib/ExtUtils/MM_VMS.pm
2930 'ExtUtils::MM_Win32' => '1.09', #./lib/ExtUtils/MM_Win32.pm
2931 'ExtUtils::MM_Win95' => '0.03', #./lib/ExtUtils/MM_Win95.pm
2932 'ExtUtils::MY' => '0.01', #./lib/ExtUtils/MY.pm
2933 'ExtUtils::Packlist' => '0.04', #./lib/ExtUtils/Packlist.pm
2934 'ExtUtils::testlib' => '1.15', #./lib/ExtUtils/testlib.pm
2935 'ExtUtils::XSSymSet' => '1.0', #./vms/ext/XSSymSet.pm
2936 'Fatal' => '1.03', #./lib/Fatal.pm
2937 'Fcntl' => '1.05', #./lib/Fcntl.pm
2938 'fields' => '2.03', #./lib/fields.pm
2939 'File::Basename' => '2.72', #./lib/File/Basename.pm
2940 'File::CheckTree' => '4.2', #./lib/File/CheckTree.pm
2941 'File::Compare' => '1.1003', #./lib/File/Compare.pm
2942 'File::Copy' => '2.06', #./lib/File/Copy.pm
2943 'File::DosGlob' => '1.00', #./lib/File/DosGlob.pm
2944 'File::Find' => '1.05', #./lib/File/Find.pm
2945 'File::Glob' => '1.02', #./lib/File/Glob.pm
2946 'File::Path' => '1.06', #./lib/File/Path.pm
2947 'File::Spec' => '0.86', #./lib/File/Spec.pm
2948 'File::Spec::Cygwin' => '1.1', #./lib/File/Spec/Cygwin.pm
2949 'File::Spec::Epoc' => '1.1', #./lib/File/Spec/Epoc.pm
2950 'File::Spec::Functions' => '1.3', #./lib/File/Spec/Functions.pm
2951 'File::Spec::Mac' => '1.4', #./lib/File/Spec/Mac.pm
2952 'File::Spec::OS2' => '1.2', #./lib/File/Spec/OS2.pm
2953 'File::Spec::Unix' => '1.5', #./lib/File/Spec/Unix.pm
2954 'File::Spec::VMS' => '1.4', #./lib/File/Spec/VMS.pm
2955 'File::Spec::Win32' => '1.4', #./lib/File/Spec/Win32.pm
2956 'File::stat' => '1.00', #./lib/File/stat.pm
2957 'File::Temp' => '0.14', #./lib/File/Temp.pm
2958 'FileCache' => '1.03', #./lib/FileCache.pm
2959 'FileHandle' => '2.01', #./lib/FileHandle.pm
2960 'filetest' => '1.01', #./lib/filetest.pm
2961 'Filter::Simple' => '0.78', #./lib/Filter/Simple.pm
2962 'Filter::Util::Call' => '1.0601', #./lib/Filter/Util/Call.pm
2963 'FindBin' => '1.43', #./lib/FindBin.pm
2964 'GDBM_File' => '1.07', #./ext/GDBM_File/GDBM_File.pm
2965 'Getopt::Long' => '2.34', #./lib/Getopt/Long.pm
2966 'Getopt::Std' => '1.04', #./lib/Getopt/Std.pm
2967 'Hash::Util' => '0.05', #./lib/Hash/Util.pm
2968 'I18N::Collate' => '1.00', #./lib/I18N/Collate.pm
2969 'I18N::Langinfo' => '0.02', #./lib/I18N/Langinfo.pm
2970 'I18N::LangTags' => '0.28', #./lib/I18N/LangTags.pm
2971 'I18N::LangTags::List' => '0.26', #./lib/I18N/LangTags/List.pm
2972 'if' => '0.03', #./lib/if.pm
2973 'integer' => '1.00', #./lib/integer.pm
2974 'IO' => '1.21', #./lib/IO.pm
2975 'IO::Dir' => '1.04', #./lib/IO/Dir.pm
2976 'IO::File' => '1.10', #./lib/IO/File.pm
2977 'IO::Handle' => '1.23', #./lib/IO/Handle.pm
2978 'IO::Pipe' => '1.122', #./lib/IO/Pipe.pm
2979 'IO::Poll' => '0.06', #./lib/IO/Poll.pm
2980 'IO::Seekable' => '1.09', #./lib/IO/Seekable.pm
2981 'IO::Select' => '1.16', #./lib/IO/Select.pm
2982 'IO::Socket' => '1.28', #./lib/IO/Socket.pm
2983 'IO::Socket::INET' => '1.27', #./lib/IO/Socket/INET.pm
2984 'IO::Socket::UNIX' => '1.21', #./lib/IO/Socket/UNIX.pm
2985 'IPC::Msg' => '1.02', #./lib/IPC/Msg.pm
2986 'IPC::Open2' => '1.01', #./lib/IPC/Open2.pm
2987 'IPC::Open3' => '1.0105', #./lib/IPC/Open3.pm
2988 'IPC::Semaphore' => '1.02', #./lib/IPC/Semaphore.pm
2989 'IPC::SysV' => '1.04', #./lib/IPC/SysV.pm
2990 'JNI' => '0.2', #./jpl/JNI/JNI.pm
2991 'JPL::AutoLoader' => undef, #./jpl/JPL/AutoLoader.pm
2992 'JPL::Class' => undef, #./jpl/JPL/Class.pm
2993 'JPL::Compile' => undef, #./jpl/JPL/Compile.pm
2994 'less' => '0.01', #./lib/less.pm
2995 'lib' => '0.5565', #./lib/lib.pm
2996 'List::Util' => '1.13', #./lib/List/Util.pm
2997 'locale' => '1.00', #./lib/locale.pm
2998 'Locale::Constants' => '2.01', #./lib/Locale/Constants.pm
2999 'Locale::Country' => '2.61', #./lib/Locale/Country.pm
3000 'Locale::Currency' => '2.21', #./lib/Locale/Currency.pm
3001 'Locale::Language' => '2.21', #./lib/Locale/Language.pm
3002 'Locale::Maketext' => '1.06', #./lib/Locale/Maketext.pm
3003 'Locale::Maketext::Guts'=> undef, #./lib/Locale/Maketext/Guts.pm
3004 'Locale::Maketext::GutsLoader'=> undef, #./lib/Locale/Maketext/GutsLoader.pm
3005 'Locale::Script' => '2.21', #./lib/Locale/Script.pm
3006 'Math::BigFloat' => '1.40', #./lib/Math/BigFloat.pm
3007 'Math::BigFloat::Trace' => '0.01', #./lib/Math/BigFloat/Trace.pm
3008 'Math::BigInt' => '1.66', #./lib/Math/BigInt.pm
3009 'Math::BigInt::Calc' => '0.36', #./lib/Math/BigInt/Calc.pm
3010 'Math::BigInt::Scalar' => '0.11', #./lib/Math/BigInt/Scalar.pm
3011 'Math::BigInt::Trace' => '0.01', #./lib/Math/BigInt/Trace.pm
3012 'Math::BigRat' => '0.10', #./lib/Math/BigRat.pm
3013 'Math::Complex' => '1.34', #./lib/Math/Complex.pm
3014 'Math::Trig' => '1.02', #./lib/Math/Trig.pm
3015 'Memoize' => '1.01', #./lib/Memoize.pm
3016 'Memoize::AnyDBM_File' => '0.65', #./lib/Memoize/AnyDBM_File.pm
3017 'Memoize::Expire' => '1.00', #./lib/Memoize/Expire.pm
3018 'Memoize::ExpireFile' => '1.01', #./lib/Memoize/ExpireFile.pm
3019 'Memoize::ExpireTest' => '0.65', #./lib/Memoize/ExpireTest.pm
3020 'Memoize::NDBM_File' => '0.65', #./lib/Memoize/NDBM_File.pm
3021 'Memoize::SDBM_File' => '0.65', #./lib/Memoize/SDBM_File.pm
3022 'Memoize::Storable' => '0.65', #./lib/Memoize/Storable.pm
3023 'MIME::Base64' => '2.20', #./lib/MIME/Base64.pm
3024 'MIME::QuotedPrint' => '2.20', #./lib/MIME/QuotedPrint.pm
3025 'NDBM_File' => '1.05', #./ext/NDBM_File/NDBM_File.pm
3026 'Net::Cmd' => '2.24', #./lib/Net/Cmd.pm
3027 'Net::Config' => '1.10', #./lib/Net/Config.pm
3028 'Net::Domain' => '2.18', #./lib/Net/Domain.pm
3029 'Net::FTP' => '2.71', #./lib/Net/FTP.pm
3030 'Net::FTP::A' => '1.16', #./lib/Net/FTP/A.pm
3031 'Net::FTP::dataconn' => '0.11', #./lib/Net/FTP/dataconn.pm
3032 'Net::FTP::E' => '0.01', #./lib/Net/FTP/E.pm
3033 'Net::FTP::I' => '1.12', #./lib/Net/FTP/I.pm
3034 'Net::FTP::L' => '0.01', #./lib/Net/FTP/L.pm
3035 'Net::hostent' => '1.01', #./lib/Net/hostent.pm
3036 'Net::netent' => '1.00', #./lib/Net/netent.pm
3037 'Net::Netrc' => '2.12', #./lib/Net/Netrc.pm
3038 'Net::NNTP' => '2.22', #./lib/Net/NNTP.pm
3039 'Net::Ping' => '2.31', #./lib/Net/Ping.pm
3040 'Net::POP3' => '2.24', #./lib/Net/POP3.pm
3041 'Net::protoent' => '1.00', #./lib/Net/protoent.pm
3042 'Net::servent' => '1.01', #./lib/Net/servent.pm
3043 'Net::SMTP' => '2.26', #./lib/Net/SMTP.pm
3044 'Net::Time' => '2.09', #./lib/Net/Time.pm
3045 'NEXT' => '0.60', #./lib/NEXT.pm
3046 'O' => '1.00', #./lib/O.pm
3047 'ODBM_File' => '1.04', #./ext/ODBM_File/ODBM_File.pm
3048 'Opcode' => '1.05', #./lib/Opcode.pm
3049 'open' => '1.02', #./lib/open.pm
3050 'ops' => '1.00', #./lib/ops.pm
3051 'OS2::ExtAttr' => '0.02', #./os2/OS2/ExtAttr/ExtAttr.pm
3052 'OS2::PrfDB' => '0.03', #./os2/OS2/PrfDB/PrfDB.pm
3053 'OS2::Process' => '1.01', #./os2/OS2/Process/Process.pm
3054 'OS2::DLL' => '1.01', #./os2/OS2/REXX/DLL/DLL.pm
3055 'OS2::REXX' => '1.02', #./os2/OS2/REXX/REXX.pm
3056 'overload' => '1.01', #./lib/overload.pm
3057 'PerlIO' => '1.02', #./lib/PerlIO.pm
3058 'PerlIO::encoding' => '0.07', #./lib/PerlIO/encoding.pm
3059 'PerlIO::scalar' => '0.02', #./lib/PerlIO/scalar.pm
3060 'PerlIO::via' => '0.02', #./lib/PerlIO/via.pm
3061 'PerlIO::via::QuotedPrint'=> '0.05', #./lib/PerlIO/via/QuotedPrint.pm
3062 'Pod::Checker' => '1.41', #./lib/Pod/Checker.pm
3063 'Pod::Find' => '0.24', #./lib/Pod/Find.pm
3064 'Pod::Functions' => '1.02', #./lib/Pod/Functions.pm
3065 'Pod::Html' => '1.0501', #./lib/Pod/Html.pm
3066 'Pod::InputObjects' => '1.14', #./lib/Pod/InputObjects.pm
3067 'Pod::LaTeX' => '0.55', #./lib/Pod/LaTeX.pm
3068 'Pod::Man' => '1.37', #./lib/Pod/Man.pm
3069 'Pod::ParseLink' => '1.06', #./lib/Pod/ParseLink.pm
3070 'Pod::Parser' => '1.13', #./lib/Pod/Parser.pm
3071 'Pod::ParseUtils' => '0.3', #./lib/Pod/ParseUtils.pm
3072 'Pod::Perldoc' => '3.10', #./lib/Pod/Perldoc.pm
3073 'Pod::Perldoc::BaseTo' => undef, #./lib/Pod/Perldoc/BaseTo.pm
3074 'Pod::Perldoc::GetOptsOO'=> undef, #./lib/Pod/Perldoc/GetOptsOO.pm
3075 'Pod::Perldoc::ToChecker'=> undef, #./lib/Pod/Perldoc/ToChecker.pm
3076 'Pod::Perldoc::ToMan' => undef, #./lib/Pod/Perldoc/ToMan.pm
3077 'Pod::Perldoc::ToNroff' => undef, #./lib/Pod/Perldoc/ToNroff.pm
3078 'Pod::Perldoc::ToPod' => undef, #./lib/Pod/Perldoc/ToPod.pm
3079 'Pod::Perldoc::ToRtf' => undef, #./lib/Pod/Perldoc/ToRtf.pm
3080 'Pod::Perldoc::ToText' => undef, #./lib/Pod/Perldoc/ToText.pm
3081 'Pod::Perldoc::ToTk' => 'undef', #./lib/Pod/Perldoc/ToTk.pm
3082 'Pod::Perldoc::ToXml' => undef, #./lib/Pod/Perldoc/ToXml.pm
3083 'Pod::Plainer' => '0.01', #./lib/Pod/Plainer.pm
3084 'Pod::PlainText' => '2.01', #./lib/Pod/PlainText.pm
3085 'Pod::Select' => '1.13', #./lib/Pod/Select.pm
3086 'Pod::Text' => '2.21', #./lib/Pod/Text.pm
3087 'Pod::Text::Color' => '1.04', #./lib/Pod/Text/Color.pm
3088 'Pod::Text::Overstrike' => '1.1', #./lib/Pod/Text/Overstrike.pm
3089 'Pod::Text::Termcap' => '1.11', #./lib/Pod/Text/Termcap.pm
3090 'Pod::Usage' => '1.16', #./lib/Pod/Usage.pm
3091 'POSIX' => '1.06', #./lib/POSIX.pm
3092 're' => '0.04', #./lib/re.pm
3093 'Safe' => '2.10', #./lib/Safe.pm
3094 'Scalar::Util' => '1.13', #./lib/Scalar/Util.pm
3095 'SDBM_File' => '1.04', #./lib/SDBM_File.pm
3096 'Search::Dict' => '1.02', #./lib/Search/Dict.pm
3097 'SelectSaver' => '1.00', #./lib/SelectSaver.pm
3098 'SelfLoader' => '1.0904', #./lib/SelfLoader.pm
3099 'Shell' => '0.5', #./lib/Shell.pm
3100 'sigtrap' => '1.02', #./lib/sigtrap.pm
3101 'Socket' => '1.76', #./lib/Socket.pm
3102 'sort' => '1.02', #./lib/sort.pm
3103 'Storable' => '2.08', #./lib/Storable.pm
3104 'strict' => '1.03', #./lib/strict.pm
3105 'subs' => '1.00', #./lib/subs.pm
3106 'Switch' => '2.10', #./lib/Switch.pm
3107 'Symbol' => '1.05', #./lib/Symbol.pm
3108 'Sys::Hostname' => '1.11', #./lib/Sys/Hostname.pm
3109 'Sys::Syslog' => '0.04', #./lib/Sys/Syslog.pm
3110 'Term::ANSIColor' => '1.07', #./lib/Term/ANSIColor.pm
3111 'Term::Cap' => '1.08', #./lib/Term/Cap.pm
3112 'Term::Complete' => '1.401', #./lib/Term/Complete.pm
3113 'Term::ReadLine' => '1.01', #./lib/Term/ReadLine.pm
3114 'Test' => '1.24', #./lib/Test.pm
3115 'Test::Builder' => '0.17', #./lib/Test/Builder.pm
3116 'Test::Harness' => '2.30', #./lib/Test/Harness.pm
3117 'Test::Harness::Assert' => '0.01', #./lib/Test/Harness/Assert.pm
3118 'Test::Harness::Iterator'=> '0.01', #./lib/Test/Harness/Iterator.pm
3119 'Test::Harness::Straps' => '0.15', #./lib/Test/Harness/Straps.pm
3120 'Test::More' => '0.47', #./lib/Test/More.pm
3121 'Test::Simple' => '0.47', #./lib/Test/Simple.pm
3122 'Text::Abbrev' => '1.01', #./lib/Text/Abbrev.pm
3123 'Text::Balanced' => '1.95', #./lib/Text/Balanced.pm
3124 'Text::ParseWords' => '3.21', #./lib/Text/ParseWords.pm
3125 'Text::Soundex' => '1.01', #./lib/Text/Soundex.pm
3126 'Text::Tabs' => '98.112801', #./lib/Text/Tabs.pm
3127 'Text::Wrap' => '2001.09291', #./lib/Text/Wrap.pm
3128 'Thread' => '2.00', #./lib/Thread.pm
3129 'Thread::Queue' => '2.00', #./lib/Thread/Queue.pm
3130 'Thread::Semaphore' => '2.01', #./lib/Thread/Semaphore.pm
3131 'Thread::Signal' => '1.00', #./ext/Thread/Thread/Signal.pm
3132 'Thread::Specific' => '1.00', #./ext/Thread/Thread/Specific.pm
3133 'threads' => '1.00', #./lib/threads.pm
3134 'threads::shared' => '0.91', #./lib/threads/shared.pm
3135 'Tie::Array' => '1.03', #./lib/Tie/Array.pm
3136 'Tie::File' => '0.97', #./lib/Tie/File.pm
3137 'Tie::Handle' => '4.1', #./lib/Tie/Handle.pm
3138 'Tie::Hash' => '1.00', #./lib/Tie/Hash.pm
3139 'Tie::Memoize' => '1.0', #./lib/Tie/Memoize.pm
3140 'Tie::RefHash' => '1.31', #./lib/Tie/RefHash.pm
3141 'Tie::Scalar' => '1.00', #./lib/Tie/Scalar.pm
3142 'Tie::SubstrHash' => '1.00', #./lib/Tie/SubstrHash.pm
3143 'Time::gmtime' => '1.02', #./lib/Time/gmtime.pm
3144 'Time::HiRes' => '1.51', #./lib/Time/HiRes.pm
3145 'Time::Local' => '1.07', #./lib/Time/Local.pm
3146 'Time::localtime' => '1.02', #./lib/Time/localtime.pm
3147 'Time::tm' => '1.00', #./lib/Time/tm.pm
3148 'Unicode' => '4.0.0', # lib/unicore/version
3149 'Unicode::Collate' => '0.28', #./lib/Unicode/Collate.pm
3150 'Unicode::Normalize' => '0.23', #./lib/Unicode/Normalize.pm
3151 'Unicode::UCD' => '0.21', #./lib/Unicode/UCD.pm
3152 'UNIVERSAL' => '1.01', #./lib/UNIVERSAL.pm
3153 'User::grent' => '1.00', #./lib/User/grent.pm
3154 'User::pwent' => '1.00', #./lib/User/pwent.pm
3155 'utf8' => '1.02', #./lib/utf8.pm
3156 'vars' => '1.01', #./lib/vars.pm
3157 'VMS::DCLsym' => '1.02', #./vms/ext/DCLsym/DCLsym.pm
3158 'VMS::Filespec' => '1.11', #./vms/ext/Filespec.pm
3159 'VMS::Stdio' => '2.3', #./vms/ext/Stdio/Stdio.pm
3160 'vmsish' => '1.01', #./lib/vmsish.pm
3161 'warnings' => '1.03', #./lib/warnings.pm
3162 'warnings::register' => '1.00', #./lib/warnings/register.pm
3163 'XS::APItest' => '0.02', #./lib/XS/APItest.pm
3164 'XS::Typemap' => '0.01', #./lib/XS/Typemap.pm
3165 'XSLoader' => '0.02', #./lib/XSLoader.pm
3169 'AnyDBM_File' => '1.00', #AnyDBM_File.pm
3170 'Attribute::Handlers' => 0.78, #Attribute\Handlers.pm
3171 'attributes' => 0.06, #attributes.pm
3172 'attrs' => 1.01, #attrs.pm
3173 'AutoLoader' => '5.60', #AutoLoader.pm
3174 'AutoSplit' => 1.04, #AutoSplit.pm
3175 'autouse' => 1.03, #autouse.pm
3177 'B::Asmdata' => 1.01, #B\Asmdata.pm
3178 'B::Assembler' => 0.06, #B\Assembler.pm
3179 'B::Bblock' => 1.02, #B\Bblock.pm
3180 'B::Bytecode' => 1.01, #B\Bytecode.pm