+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
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>.
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();
}
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(
}
}
-print "1..5\n";
+print "1..3\n";
use strict;
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