>  Or you can install the Devel::Modlist module, and just type:
>  perl -d:Modlist myscript.pl
> 
>  And have all the use'd and require'd modules and files needed by the
>  script printed.
> 
>  http://search.cpan.org/search?dist=Devel-Modlist

Thank you.  Sounds evil but it works.  Copy to existing Devel folder.

D:\PERL\_myStuff>perl -d:Modlist myscript.pl

AutoLoader             5.58
Carp
Config
DynaLoader             1.04
Errno                 1.111
Exporter              5.562
Exporter::Heavy
HTML::Entities         1.22
HTML::HeadParser       2.15
HTML::LinkExtor        1.31
HTML::Parser           3.25
HTML::SimpleLinkExtor   0.71
HTML::Tagset           3.03
HTTP::Date             1.43
HTTP::Headers          1.37
HTTP::Message          1.23
HTTP::Request          1.27
HTTP::Response         1.34
HTTP::Status           1.26
IO                     1.20
IO::Handle             1.21
IO::Socket             1.26
IO::Socket::INET       1.25
IO::Socket::UNIX       1.20
LWP                    5.51
LWP::Debug
LWP::MemberMixin
LWP::Protocol          1.36
LWP::Simple            1.33
LWP::UserAgent         1.77
Net::Cmd               2.18
Net::Config            1.04
Net::FTP               2.56
SelectSaver
Socket                 1.72
Symbol                 1.02
Time::Local
URI                    1.17
URI::Escape            3.19
URI::File
URI::URL               5.02
URI::WithBase
URI::_generic
URI::_query
XSLoader               0.01
d:::PERL::site::lib::Net::libnet.cfg
overload
strict                 1.01
subs
vars
warnings
warnings::register

------------------------

Ton of that stuff was not my doing.  Take a look at this one:

Entire contents of test.pl:

#!perl

use LWP;
__END__


D:\PERL\_myStuff>perl -d:Modlist test.pl
AutoLoader             5.58
Carp
Config
DynaLoader             1.04
Exporter              5.562
HTML::Entities         1.22
HTML::HeadParser       2.15
HTML::Parser           3.25
HTTP::Date             1.43
HTTP::Headers          1.37
HTTP::Message          1.23
HTTP::Request          1.27
HTTP::Response         1.34
HTTP::Status           1.26
LWP                    5.51
LWP::Debug
LWP::MemberMixin
LWP::Protocol          1.36
LWP::UserAgent         1.77
Time::Local
URI                    1.17
URI::Escape            3.19
URI::URL               5.02
URI::WithBase
overload
strict                 1.01
vars
warnings
warnings::register

What's all this 'make' busywork in gz files?  Who needs it?



-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to