[PATCH @15001] ISO-IR-165 --> ISO_IR_165
[p5sagit/p5-mst-13.2.git] / ext / Encode / TW / Makefile.PL
index ca25098..331f606 100644 (file)
@@ -2,8 +2,9 @@ use 5.7.2;
 use strict;
 use ExtUtils::MakeMaker;
 
-my %tables = (BIG5   => ['big5.enc'],
-             CP950  => ['cp950.enc'],
+my %tables = ('BIG5'           => ['big5.enc'],
+             'BIG5_HKSCS'      => ['big5-hkscs.enc'],
+             'CP950'           => ['cp950.enc'],
              );
 
 my $name = 'TW';
@@ -126,7 +127,9 @@ sub postamble
                $continuator = '';
            }
        }
-       $str .= "\n\t\$(PERL) $compile -o \$\@ -f $table.fnm\n\n";
+        $str .= $^O eq 'VMS' # In VMS quote to preserve case
+            ? qq{\n\t\$(PERL) $compile -"Q" -o \$\@ -f $table.fnm\n\n}
+            : qq{\n\t\$(PERL) $compile -Q -o \$\@ -f $table.fnm\n\n};
        open (FILELIST, ">$table.fnm")
            || die "Could not open $table.fnm: $!";
        foreach my $file (@{$tables{$table}})