blob: 0d10b6d970ab620f36f1695d213a708fdbab9b7b (
plain)
1
2
3
4
5
6
7
8
|
use ExtUtils::MakeMaker;
# See lib/ExtUtils/MakeMaker.pm for details of how to influence
# the contents of the Makefile that is written.
WriteMakefile(
'NAME' => 'Log::ErrLogger',
'VERSION_FROM' => 'ErrLogger.pm', # finds $VERSION
'PREREQ_PM' => { Mail::Mailer => 0 },
);
|