This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Porting/checkURL.pl now requires rather than uses all non-core modules.
authorNicholas Clark <nick@ccl4.org>
Wed, 21 Dec 2011 18:14:13 +0000 (19:14 +0100)
committerNicholas Clark <nick@ccl4.org>
Thu, 22 Dec 2011 07:43:31 +0000 (08:43 +0100)
commitd4b5f70ab4778c1a32574fd37f08482baecafd66
treec739239aa0d0b18a96d455a3dd53d800b7c521ba
parent8f5755bc0b04efd9f62b4ef9b675af81030c1639
Porting/checkURL.pl now requires rather than uses all non-core modules.

This way ./perl -Ilib -c Porting/checkURL.pl can be used to syntax check it.

Only File::Slurp and URI::Find::Simple were actually relying on C<use> to
import subroutines - replace the two uses with fully qualified names.
All other packages are needed for object constructors, not imports, so there
is no change in loading them with C<require>.
Porting/checkURL.pl