1use ExtUtils::MakeMaker;
2# See lib/ExtUtils/MakeMaker.pm for details of how to influence
3# the contents of the Makefile that is written.
4
5#system(($^O eq 'VMS' ? 'mcr ': ()),$^X, 'Config.PL');
6
7WriteMakefile(
8    'NAME'	=> 'Mail::Sender',
9    'PREREQ_PM' => {'MIME::Base64' => 0},
10    'VERSION_FROM' => 'Sender.pm', # finds $VERSION
11   ($] ge '5.005')
12    ? (
13     'AUTHOR' => 'Jan Krynicky (Jenda@Krynicky.cz)',
14     'ABSTRACT' => 'Send mails with attachments through a SMTP server, socket()s based.',
15	 'LICENSE' => 'Perl'
16    )
17    : (),
18);
19