diff options
author | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-23 19:50:02 +0000 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-03-23 19:50:02 +0000 |
commit | 071db25d4bd6237e4ead7e44b9c1420448a117ff (patch) | |
tree | a150089b0a541831d71a182e6f31041f74d18f2f /ext/Encode/Byte | |
parent | 3be065a1e9733344e98c8647d9690fa7c678b5c5 (diff) | |
download | perl-071db25d4bd6237e4ead7e44b9c1420448a117ff.tar.gz |
Upgrade to Encode 0.97, from Dan Kogai.
p4raw-id: //depot/perl@15446
Diffstat (limited to 'ext/Encode/Byte')
-rw-r--r-- | ext/Encode/Byte/Makefile.PL | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/ext/Encode/Byte/Makefile.PL b/ext/Encode/Byte/Makefile.PL index a49b4f10fc..590a0d0a37 100644 --- a/ext/Encode/Byte/Makefile.PL +++ b/ext/Encode/Byte/Makefile.PL @@ -4,13 +4,13 @@ use ExtUtils::MakeMaker; my $name = 'Byte'; my %tables = ( - '8bit' => + byte_t => [ - 'ascii.ucm', + # 'ascii.ucm', 'koi8-r.ucm', 'viscii.ucm', ], - Mac => + mac_t => [ qw(macCentEuro.enc macCroatian.enc macCyrillic.enc macDingbats.enc @@ -19,7 +19,6 @@ my %tables = ( macSami.enc macThai.enc macTurkish.enc macUkraine.enc), ], - ); opendir(ENC,'../Encode'); @@ -27,7 +26,7 @@ while (defined(my $file = readdir(ENC))) { if ($file =~ /(8859|ibm).*\.ucm/io) { - push(@{$tables{$1}},$file); + push(@{$tables{$1."_t"}},$file) unless $file eq '8859-1.ucm'; } } closedir(ENC); |