Originally posted by starman:
I can't find it anywhere. Every search I do points me to the old MacPerl, not the one that comes with OSX. Thanks.
Mike
You could simply use Perl itself to find the latest version of the module you are looking for, download it, compile it and install it.
Use the following command line:
perl -MCPAN -e shell
When you run it for the first time, it would ask you some configurations.
Once you are at the "cpan>" prompt, just say:
install LWP
LWP is the module name for libwww-perl.
Any CPAN mirror would have LWP etc.
-A