Actually submit previous change.
[p5sagit/p5-mst-13.2.git] / ext / MIME / Base64 / Makefile.PL
1 require 5.006;
2 use ExtUtils::MakeMaker;
3
4 my @makefileopts;
5 if (grep { $_ eq 'PERL_CORE=1' } @ARGV) {
6     push @makefileopts, MAN3PODS => {};
7 }
8 if ($] >= 5.008) {
9     push @makefileopts, INSTALLDIRS => 'perl';
10 }
11
12 WriteMakefile(
13     NAME         => 'MIME::Base64',
14     VERSION_FROM => 'Base64.pm',
15     dist         => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
16     @makefileopts,
17 );