From: Gisle Aas Date: Tue, 9 Jun 2009 21:15:54 +0000 (+0200) Subject: Upgrade to MIME-Base64-3.08 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=dfed8d37710c8ee747a9c1375201396b85ccaed2;p=p5sagit%2Fp5-mst-13.2.git Upgrade to MIME-Base64-3.08 --- diff --git a/ext/MIME-Base64/Base64.pm b/ext/MIME-Base64/Base64.pm index 4c1538d..6c076d1 100644 --- a/ext/MIME-Base64/Base64.pm +++ b/ext/MIME-Base64/Base64.pm @@ -1,7 +1,5 @@ package MIME::Base64; -# $Id: Base64.pm,v 3.11 2005/11/29 20:59:55 gisle Exp $ - use strict; use vars qw(@ISA @EXPORT $VERSION); @@ -9,7 +7,7 @@ require Exporter; @ISA = qw(Exporter); @EXPORT = qw(encode_base64 decode_base64); -$VERSION = '3.07_01'; +$VERSION = '3.08'; require XSLoader; XSLoader::load('MIME::Base64', $VERSION); diff --git a/ext/MIME-Base64/Base64.xs b/ext/MIME-Base64/Base64.xs index afbad93..1740a16 100644 --- a/ext/MIME-Base64/Base64.xs +++ b/ext/MIME-Base64/Base64.xs @@ -1,4 +1,4 @@ -/* $Id: Base64.xs,v 3.5 2005/11/26 10:44:14 gisle Exp $ +/* $Id$ Copyright 1997-2004 Gisle Aas diff --git a/ext/MIME-Base64/Changes b/ext/MIME-Base64/Changes index f86520d..4b60a89 100644 --- a/ext/MIME-Base64/Changes +++ b/ext/MIME-Base64/Changes @@ -1,3 +1,15 @@ +2009-06-09 Gisle Aas + + Release 3.08 + + Jarkko Hietaniemi (1): + EBCDIC changes from core + + Nicholas Clark (1): + Get rid of the PERL_CORE hacks + + + 2005-11-30 Gisle Aas Release 3.07 diff --git a/ext/MIME-Base64/Makefile.PL b/ext/MIME-Base64/Makefile.PL index f676159..7300447 100644 --- a/ext/MIME-Base64/Makefile.PL +++ b/ext/MIME-Base64/Makefile.PL @@ -2,9 +2,6 @@ require 5.006; use ExtUtils::MakeMaker; my @makefileopts; -if (grep { $_ eq 'PERL_CORE=1' } @ARGV) { - push @makefileopts, MAN3PODS => {}; -} if ($] >= 5.008) { push @makefileopts, INSTALLDIRS => 'perl'; } @@ -12,6 +9,5 @@ if ($] >= 5.008) { WriteMakefile( NAME => 'MIME::Base64', VERSION_FROM => 'Base64.pm', - dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', }, @makefileopts, ); diff --git a/ext/MIME-Base64/QuotedPrint.pm b/ext/MIME-Base64/QuotedPrint.pm index 1d6a7c1..aee13d6 100644 --- a/ext/MIME-Base64/QuotedPrint.pm +++ b/ext/MIME-Base64/QuotedPrint.pm @@ -1,7 +1,5 @@ package MIME::QuotedPrint; -# $Id: QuotedPrint.pm,v 3.7 2005/11/29 20:49:46 gisle Exp $ - use strict; use vars qw(@ISA @EXPORT $VERSION); @@ -9,7 +7,7 @@ require Exporter; @ISA = qw(Exporter); @EXPORT = qw(encode_qp decode_qp); -$VERSION = "3.07"; +$VERSION = "3.08"; use MIME::Base64; # will load XS version of {en,de}code_qp()