Subject: | Missing dependancies in makefile.pl causing install failures |
Hi, your install success rate would be much better if makefile.pl had a
more complete list of module dependancies. Could I suggest you alter
your makefile.pl to the following:
use 5.006_001;
use ExtUtils::MakeMaker;
WriteMakefile(
'NAME' => 'XML::Stream',
'VERSION_FROM' => 'lib/XML/Stream.pm',
'PREREQ_PM' => {
'Authen::SASL' => 0,
'MIME::Base64' => 0,
'Sys::Hostname' => 0,
'IO::Socket' => 0,
'IO::Select' => 0,
'FileHandle' => 0,
'Carp' => 0,
'POSIX' => 0,
'utf8' => 0,
'Encode' => 0
},
'dist' => {
'COMPRESS' => 'gzip --best'
}
);