In perl.git, the branch blead has been updated <http://perl5.git.perl.org/perl.git/commitdiff/2163b7036ce4c8832734a6bfb49ce6e7ca0f3ec0?hp=8c13e94604b1db7743f11c459b95a61238963cc8>
- Log ----------------------------------------------------------------- commit 2163b7036ce4c8832734a6bfb49ce6e7ca0f3ec0 Author: Leon Timmermans <[email protected]> Date: Fri Mar 25 18:01:48 2016 +0100 Allow Encode to be built on static perls Previously there were build failures because cp1252 was defined both in the default set of encodings an in the byte set. ----------------------------------------------------------------------- Summary of changes: cpan/Encode/Byte/Makefile.PL | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cpan/Encode/Byte/Makefile.PL b/cpan/Encode/Byte/Makefile.PL index b8d09e6..6824bbb 100644 --- a/cpan/Encode/Byte/Makefile.PL +++ b/cpan/Encode/Byte/Makefile.PL @@ -39,7 +39,7 @@ my %tables = ( my %not_here = map {$_ => 1} ( - '8859-1.ucm', # default + '8859-1.ucm', 'cp1252.ucm', # default qw(cp037.ucm cp1026.ucm cp1047.ucm cp500.ucm cp875.ucm), # EBCDIC qw(cp932.ucm cp936.ucm cp949.ucm cp950.ucm), # CJK ); -- Perl5 Master Repository
