summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorGisle Aas <gisle@aas.no>2009-06-09 23:15:54 +0200
committerDavid Mitchell <davem@iabyn.com>2009-06-12 15:21:00 +0100
commitb5568d47a3a5868652e98406e5cf35c0b4435254 (patch)
treebd308fd2cf073a45648ad2d7f0ed35db6847fe60 /ext
parentd487d6db1e8e2b903fe57d1433f01aa481cf916e (diff)
downloadperl-b5568d47a3a5868652e98406e5cf35c0b4435254.tar.gz
Upgrade to MIME-Base64-3.08
(cherry picked from commit dfed8d37710c8ee747a9c1375201396b85ccaed2)
Diffstat (limited to 'ext')
-rw-r--r--ext/MIME-Base64/Base64.pm4
-rw-r--r--ext/MIME-Base64/Base64.xs2
-rw-r--r--ext/MIME-Base64/Changes12
-rw-r--r--ext/MIME-Base64/Makefile.PL4
-rw-r--r--ext/MIME-Base64/QuotedPrint.pm4
5 files changed, 15 insertions, 11 deletions
diff --git a/ext/MIME-Base64/Base64.pm b/ext/MIME-Base64/Base64.pm
index 4c1538dc72..6c076d1b7c 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 afbad93c52..1740a163f1 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 f86520d500..4b60a89d96 100644
--- a/ext/MIME-Base64/Changes
+++ b/ext/MIME-Base64/Changes
@@ -1,3 +1,15 @@
+2009-06-09 Gisle Aas <gisle@ActiveState.com>
+
+ 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 <gisle@ActiveState.com>
Release 3.07
diff --git a/ext/MIME-Base64/Makefile.PL b/ext/MIME-Base64/Makefile.PL
index f676159f67..7300447690 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 1d6a7c1d43..aee13d6256 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()