diff options
author | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-01-21 21:37:43 +0000 |
---|---|---|
committer | Nick Ing-Simmons <nik@tiuk.ti.com> | 2001-01-21 21:37:43 +0000 |
commit | e03ac09223e234f57407d65d0cb9cc67f3394e0a (patch) | |
tree | e725e5f254de43d3b5a1dbdc470a6e0800cb5017 /ext/Encode/Makefile.PL | |
parent | 59bc78caa43a7246989b4c4e71c2df3af72e1bf5 (diff) | |
download | perl-e03ac09223e234f57407d65d0cb9cc67f3394e0a.tar.gz |
Switch "compiled in" encodings to .ucm format.
(Leave others as .enc till we can run-time load .ucm,
or find some other way to load them.)
p4raw-id: //depot/perlio@8508
Diffstat (limited to 'ext/Encode/Makefile.PL')
-rw-r--r-- | ext/Encode/Makefile.PL | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/Encode/Makefile.PL b/ext/Encode/Makefile.PL index 6a0e1c59b0..fcd06514ec 100644 --- a/ext/Encode/Makefile.PL +++ b/ext/Encode/Makefile.PL @@ -1,14 +1,14 @@ use ExtUtils::MakeMaker; -my %tables = (iso8859 => ['ascii.enc', 'cp1250.enc'], - EBCDIC => ['cp1047.enc','cp37.enc','posix-bc.enc'], - Symbols => ['symbol.enc','dingbats.enc'], +my %tables = (iso8859 => ['ascii.ucm', 'cp1250.ucm'], + EBCDIC => ['cp1047.ucm','cp37.ucm','posix-bc.ucm'], + Symbols => ['symbol.ucm','dingbats.ucm'], ); opendir(ENC,'Encode'); while (defined(my $file = readdir(ENC))) { - if ($file =~ /iso8859.*\.enc/) + if ($file =~ /iso8859.*\.ucm/) { push(@{$tables{iso8859}},$file); } |