diff options
author | Steve Peters <steve@fisharerojo.org> | 2005-11-27 02:35:25 +0000 |
---|---|---|
committer | Steve Peters <steve@fisharerojo.org> | 2005-11-27 02:35:25 +0000 |
commit | e18397069e4f2f822ced675c3133e2b7f182bb58 (patch) | |
tree | 3f0981ee8c64b8c6d3e0796b0539634d9d4eef00 /ext/MIME/Base64/Makefile.PL | |
parent | 439787adcd53f9bf3c626f16cfde7d00fa72ed23 (diff) | |
download | perl-e18397069e4f2f822ced675c3133e2b7f182bb58.tar.gz |
Upgrade to MIME-Base64-3.06
p4raw-id: //depot/perl@26214
Diffstat (limited to 'ext/MIME/Base64/Makefile.PL')
-rw-r--r-- | ext/MIME/Base64/Makefile.PL | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ext/MIME/Base64/Makefile.PL b/ext/MIME/Base64/Makefile.PL index 7a4e13ec75..d7e0784161 100644 --- a/ext/MIME/Base64/Makefile.PL +++ b/ext/MIME/Base64/Makefile.PL @@ -1,9 +1,10 @@ -require 5.005; +require 5.006; use ExtUtils::MakeMaker; WriteMakefile( NAME => 'MIME::Base64', - MAN3PODS => {}, # Pods will be built by installman. VERSION_FROM => 'Base64.pm', dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, + ($] >= 5.008) ? + (INSTALLDIRS => 'perl') : (), ); |