merging 5.5.5 bugfixes

This commit is contained in:
JT Smith 2004-03-04 05:56:44 +00:00
parent 3a845e9027
commit cbbb7e8392
15 changed files with 2764 additions and 10 deletions

View file

@ -148,6 +148,19 @@ if (eval { require Archive::Tar }) {
}
}
print "IO::Zlib module .......................... ";
if (eval { require IO::Zlib }) {
print "OK\n";
} else {
if ($< == 0 && $os eq "Linuxish") {
print "Attempting to install...\n";
CPAN::Shell->install("IO::Zlib");
} else {
print "Please install.\n";
$prereq = 0;
}
}
print "Compress::Zlib module .................... ";
if (eval { require Compress::Zlib }) {
print "OK\n";