diff options
author | Gisle Aas <gisle@aas.no> | 2009-06-09 23:13:26 +0200 |
---|---|---|
committer | Gisle Aas <gisle@aas.no> | 2009-06-09 23:13:26 +0200 |
commit | c8780a73668f93a1203363e8df5c0b9feb79a914 (patch) | |
tree | 8c01d7f6e82a8e996e0e1704c3d127cabb93976b /ext | |
parent | 23be15b77e2382b66e19a2a0e78485dc017fdd3c (diff) | |
download | perl-c8780a73668f93a1203363e8df5c0b9feb79a914.tar.gz |
Upgrade to Digest-MD5-2.39
Diffstat (limited to 'ext')
-rw-r--r-- | ext/Digest-MD5/Changes | 15 | ||||
-rw-r--r-- | ext/Digest-MD5/MD5.pm | 2 | ||||
-rw-r--r--[-rwxr-xr-x] | ext/Digest-MD5/Makefile.PL | 3 | ||||
-rw-r--r-- | ext/Digest-MD5/t/files.t | 10 |
4 files changed, 17 insertions, 13 deletions
diff --git a/ext/Digest-MD5/Changes b/ext/Digest-MD5/Changes index 3d1c72390f..277a27ee99 100644 --- a/ext/Digest-MD5/Changes +++ b/ext/Digest-MD5/Changes @@ -1,3 +1,16 @@ +2009-06-09 Gisle Aas <gisle@ActiveState.com> + + Release 2.39 + + Nicholas Clark (2): + Get rid of the PERL_CORE hacks + Sync core: Rename ext/Digest/MD5 to ext/Digest-MD5 + + Jerry Hedden (1): + Handle non-numeric version numbers in ext/Digest/MD5/Makefile.PL + + + 2008-11-14 Gisle Aas <gisle@ActiveState.com> Release 2.38 @@ -294,7 +307,7 @@ The fallback code introduced in 2.10 did only work for perl-5.6.0. It should now for for perl5.004 and 5.005 - as well. Patch by Ville Skyttä <ville@office.popsystems.com>. + as well. Patch by Ville Skyttä <ville@office.popsystems.com>. diff --git a/ext/Digest-MD5/MD5.pm b/ext/Digest-MD5/MD5.pm index 0f536bb20a..4e2adbe346 100644 --- a/ext/Digest-MD5/MD5.pm +++ b/ext/Digest-MD5/MD5.pm @@ -3,7 +3,7 @@ package Digest::MD5; use strict; use vars qw($VERSION @ISA @EXPORT_OK); -$VERSION = '2.38'; +$VERSION = '2.39'; require Exporter; *import = \&Exporter::import; diff --git a/ext/Digest-MD5/Makefile.PL b/ext/Digest-MD5/Makefile.PL index bb236879f4..0a3a01647d 100755..100644 --- a/ext/Digest-MD5/Makefile.PL +++ b/ext/Digest-MD5/Makefile.PL @@ -4,8 +4,6 @@ use strict; use Config qw(%Config); use ExtUtils::MakeMaker; -my $PERL_CORE = grep $_ eq "PERL_CORE=1", @ARGV; - my @extra; @extra = (DEFINE => "-DU32_ALIGNMENT_REQUIRED") unless free_u32_alignment(); @@ -19,7 +17,6 @@ if ($^O eq 'VMS') { } push(@extra, 'INSTALLDIRS' => 'perl') if $] >= 5.008; -push(@extra, 'MAN3PODS' => {}) if $PERL_CORE; # Pods built by installman. push @extra, 'LICENSE' => 'perl' if eval($ExtUtils::MakeMaker::VERSION) >= "6.30"; WriteMakefile( diff --git a/ext/Digest-MD5/t/files.t b/ext/Digest-MD5/t/files.t index 78f1178113..26d64e3348 100644 --- a/ext/Digest-MD5/t/files.t +++ b/ext/Digest-MD5/t/files.t @@ -5,7 +5,7 @@ BEGIN { } } -print "1..5\n"; +print "1..3\n"; use strict; use Digest::MD5 qw(md5 md5_hex md5_base64); @@ -20,26 +20,20 @@ use Digest::MD5 qw(md5 md5_hex md5_base64); my $EXPECT; if (ord "A" == 193) { # EBCDIC $EXPECT = <<EOT; -0b24bb575ac412fcb1754132d1a61996 Changes 11e8028ee426273db6b6db270a8bb38c README -9fe023c06a5fe656107519eb59dd51ab MD5.pm 6e556382813f67120863f4f91b7fcdc2 MD5.xs 276da0aa4e9a08b7fe09430c9c5690aa rfc1321.txt EOT } elsif ("\n" eq "\015") { # MacOS $EXPECT = <<EOT; -cac133d6a295c650bd31af946919c72c Changes c95549c6c5e1e1c078b27042f1dc850f README -95fe334a197cbb038728ea17fae9896d MD5.pm 7aa380c810bc7c1a0bec22cf32bc50d4 MD5.xs 754b9db19f79dbc4992f7166eb0f37ce rfc1321.txt EOT } else { - # This is the output of: 'md5sum Changes README MD5.pm MD5.xs rfc1321.txt' + # This is the output of: 'md5sum README MD5.xs rfc1321.txt' $EXPECT = <<EOT; -1a3a086dfdcf13dd940ac88e0f57aad8 Changes c95549c6c5e1e1c078b27042f1dc850f README -95fe334a197cbb038728ea17fae9896d MD5.pm 7aa380c810bc7c1a0bec22cf32bc50d4 MD5.xs 754b9db19f79dbc4992f7166eb0f37ce rfc1321.txt EOT |