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);
@ISA = qw(Exporter);
@EXPORT = qw(encode_base64 decode_base64);
-$VERSION = '3.07_01';
+$VERSION = '3.08';
require XSLoader;
XSLoader::load('MIME::Base64', $VERSION);
-/* $Id: Base64.xs,v 3.5 2005/11/26 10:44:14 gisle Exp $
+/* $Id$
Copyright 1997-2004 Gisle Aas
+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
use ExtUtils::MakeMaker;
my @makefileopts;
-if (grep { $_ eq 'PERL_CORE=1' } @ARGV) {
- push @makefileopts, MAN3PODS => {};
-}
if ($] >= 5.008) {
push @makefileopts, INSTALLDIRS => 'perl';
}
WriteMakefile(
NAME => 'MIME::Base64',
VERSION_FROM => 'Base64.pm',
- dist => { COMPRESS => 'gzip -9f', SUFFIX => 'gz', },
@makefileopts,
);
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);
@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()