Upgrade to Encode 1.01, from Dan Kogai.
Jarkko Hietaniemi [Fri, 29 Mar 2002 21:00:32 +0000 (21:00 +0000)]
p4raw-id: //depot/perl@15616

82 files changed:
ext/Encode/Changes
ext/Encode/Encode.pm
ext/Encode/Encode/8859-1.ucm
ext/Encode/Encode/8859-10.ucm
ext/Encode/Encode/8859-11.ucm
ext/Encode/Encode/8859-13.ucm
ext/Encode/Encode/8859-14.ucm
ext/Encode/Encode/8859-15.ucm
ext/Encode/Encode/8859-16.ucm
ext/Encode/Encode/8859-2.ucm
ext/Encode/Encode/8859-3.ucm
ext/Encode/Encode/8859-4.ucm
ext/Encode/Encode/8859-5.ucm
ext/Encode/Encode/8859-6.ucm
ext/Encode/Encode/8859-7.ucm
ext/Encode/Encode/8859-8.ucm
ext/Encode/Encode/8859-9.ucm
ext/Encode/Encode/ascii.ucm
ext/Encode/Encode/big5-hkscs.ucm
ext/Encode/Encode/big5.ucm
ext/Encode/Encode/cp1047.ucm
ext/Encode/Encode/cp1250.ucm
ext/Encode/Encode/cp37.ucm
ext/Encode/Encode/cp932.ucm
ext/Encode/Encode/cp936.ucm
ext/Encode/Encode/cp949.ucm
ext/Encode/Encode/cp950.ucm
ext/Encode/Encode/dingbats.ucm
ext/Encode/Encode/euc-cn.ucm
ext/Encode/Encode/euc-jp.ucm
ext/Encode/Encode/euc-kr.ucm
ext/Encode/Encode/gb12345.ucm
ext/Encode/Encode/gb2312.ucm
ext/Encode/Encode/gsm0338.ucm
ext/Encode/Encode/hp-roman8.ucm
ext/Encode/Encode/ibm-1250.ucm
ext/Encode/Encode/ibm-1251.ucm
ext/Encode/Encode/ibm-1252.ucm
ext/Encode/Encode/ibm-1253.ucm
ext/Encode/Encode/ibm-1254.ucm
ext/Encode/Encode/ibm-1255.ucm
ext/Encode/Encode/ibm-1256.ucm
ext/Encode/Encode/ibm-1257.ucm
ext/Encode/Encode/ibm-1258.ucm
ext/Encode/Encode/ir-165.ucm
ext/Encode/Encode/jis0201.ucm
ext/Encode/Encode/johab.ucm
ext/Encode/Encode/koi8-f.ucm
ext/Encode/Encode/koi8-r.ucm
ext/Encode/Encode/koi8-u.ucm
ext/Encode/Encode/ksc5601.ucm
ext/Encode/Encode/macCentEuro.ucm
ext/Encode/Encode/macCroatian.ucm
ext/Encode/Encode/macCyrillic.ucm
ext/Encode/Encode/macDingbats.ucm
ext/Encode/Encode/macGreek.ucm
ext/Encode/Encode/macIceland.ucm
ext/Encode/Encode/macJapan.ucm
ext/Encode/Encode/macRoman.ucm
ext/Encode/Encode/macRumanian.ucm
ext/Encode/Encode/macSami.ucm
ext/Encode/Encode/macThai.ucm
ext/Encode/Encode/macTurkish.ucm
ext/Encode/Encode/macUkraine.ucm
ext/Encode/Encode/nextstep.ucm
ext/Encode/Encode/posix-bc.ucm
ext/Encode/Encode/shiftjis.ucm
ext/Encode/Encode/symbol.ucm
ext/Encode/Encode/viscii.ucm
ext/Encode/Makefile.PL
ext/Encode/README
ext/Encode/bin/enc2xs
ext/Encode/bin/piconv
ext/Encode/lib/Encode/CJKConstants.pm
ext/Encode/lib/Encode/JP/H2Z.pm
ext/Encode/t/Aliases.t
ext/Encode/t/CN.t
ext/Encode/t/Encode.t
ext/Encode/t/JP.t
ext/Encode/t/KR.t
ext/Encode/t/TW.t
ext/Encode/ucm2table

index 27feae4..3cf2226 100644 (file)
@@ -1,8 +1,23 @@
 # Revision history for Perl extension Encode.
 #
-# $Id: Changes,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: Changes,v 1.1 2002/03/29 20:59:39 dankogai Exp dankogai $
 #
-1.00  Wed Mar 27 2002
+1.01  $Date: 2002/03/29 20:59:39 $
+! Makefile.PL
+! README
+  s/USE_SCRIPTS/MORE_SCRIPTS/
+! Makefile.PL
+  installs enc2xs by default for external Encode:: modules in CPAN, 
+  such as Encode::HanExtra
+! t/*.t
+  More sensible perl core detection via $ENV{PERL_CORE}
+  suggested by Spider
+  Message-Id: <200203291007.FAA07329@Orb.Nashua.NH.US>
+! bin/enc2xs
+  Perl core ditection via $^X =~ m/\bminiperl$/o
+  Message-Id: <A5C7B0CA-42F1-11D6-B5AD-00039301D480@dan.co.jp>
+
+1.00  Wed Mar 29 2002
 ! *
   The version of all files is updated to 1.00 via "ci -f -l1.00",
   commemorating version 1.00.  All files, including *.ucm are now
index 267df8e..d07bfea 100644 (file)
@@ -1,6 +1,6 @@
 package Encode;
 use strict;
-our $VERSION = do { my @r = (q$Revision: 1.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+our $VERSION = do { my @r = (q$Revision: 1.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
 our $DEBUG = 0;
 
 require DynaLoader;
index 4b11c6c..6e1caba 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-1.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-1.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-1 -o Encode/iso8859-1.ucm Encode/iso8859-1.enc
 <code_set_name> "iso-8859-1"
index b06daa1..dcf79fe 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-10.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-10.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-10 -o Encode/iso8859-10.ucm Encode/iso8859-10.enc
 <code_set_name> "iso-8859-10"
index 1904b4f..5047598 100644 (file)
@@ -1,7 +1,7 @@
 #
-# $Id: 8859-11.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-11.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
-# Written $Id: 8859-11.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# Written $Id: 8859-11.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 # ./compile -n iso-8859-11 -o Encode/iso8859-11.ucm Encode/iso8859-11.enc
 <code_set_name> "iso-8859-11"
 <mb_cur_min> 1
index 4955ed4..f3a5eb4 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-13.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-13.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-13 -o Encode/iso8859-13.ucm Encode/iso8859-13.enc
 <code_set_name> "iso-8859-13"
index c1a9b48..a427b82 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-14.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-14.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-14 -o Encode/iso8859-14.ucm Encode/iso8859-14.enc
 <code_set_name> "iso-8859-14"
index 6690a14..69cf924 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-15.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-15.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-15 -o Encode/iso8859-15.ucm Encode/iso8859-15.enc
 <code_set_name> "iso-8859-15"
index fc2a5ad..8cc3899 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-16.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-16.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-16 -o Encode/iso8859-16.ucm Encode/iso8859-16.enc
 <code_set_name> "iso-8859-16"
index 84e764f..eeb8ee3 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-2.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-2.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-2 -o Encode/iso8859-2.ucm Encode/iso8859-2.enc
 <code_set_name> "iso-8859-2"
index 8a023c7..1c2e80f 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-3.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-3.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-3 -o Encode/iso8859-3.ucm Encode/iso8859-3.enc
 <code_set_name> "iso-8859-3"
index 27559c9..66c2b83 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-4.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-4.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-4 -o Encode/iso8859-4.ucm Encode/iso8859-4.enc
 <code_set_name> "iso-8859-4"
index fee8680..c3b9898 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-5.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-5.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-5 -o Encode/iso8859-5.ucm Encode/iso8859-5.enc
 <code_set_name> "iso-8859-5"
index dd2eee1..0a970cd 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-6.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-6.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-6 -o Encode/iso8859-6.ucm Encode/iso8859-6.enc
 <code_set_name> "iso-8859-6"
index 6537940..f92a11a 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-7.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-7.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-7 -o Encode/iso8859-7.ucm Encode/iso8859-7.enc
 <code_set_name> "iso-8859-7"
index 837ede2..b29179a 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-8.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-8.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-8 -o Encode/iso8859-8.ucm Encode/iso8859-8.enc
 <code_set_name> "iso-8859-8"
index 01428c2..c763763 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: 8859-9.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp dankogai $
+# $Id: 8859-9.ucm,v 1.0 2002/03/28 23:26:24 dankogai Exp $
 #
 # ./compile -n iso-8859-9 -o Encode/iso8859-9.ucm Encode/iso8859-9.enc
 <code_set_name> "iso-8859-9"
index b16e676..4a0d9d8 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ascii.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp dankogai $
+# $Id: ascii.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $
 #
 # ./compile -n US-ascii -o Encode/ascii.ucm Encode/ascii.enc
 <code_set_name> "US-ascii"
index 0d2be8e..0fd50ce 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: big5-hkscs.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp dankogai $
+# $Id: big5-hkscs.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $
 #
 # ./compile -n big5-hkscs -o Encode/big5-hkscs.ucm Encode/big5-hkscs.enc
 <code_set_name> "big5-hkscs"
index 9f5a9f0..bea897b 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: big5.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp dankogai $
+# $Id: big5.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $
 #
 # ./compile -n big5 -o Encode/big5.ucm Encode/big5.enc
 <code_set_name> "big5"
index 2a82e4a..649ee77 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: cp1047.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp dankogai $
+# $Id: cp1047.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $
 #
 # compile -n cp1047 -o Encode/cp1047.ucm Encode/cp1047.enc
 <code_set_name> "cp1047"
index 5ec23d9..79453f3 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: cp1250.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp dankogai $
+# $Id: cp1250.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $
 #
 # ./compile -n cp1250 -o Encode/cp1250.ucm Encode/cp1250.enc
 <code_set_name> "cp1250"
index 786d88e..a9a3dfa 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: cp37.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp dankogai $
+# $Id: cp37.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $
 #
 # compile -n cp37 -o Encode/cp37.ucm Encode/cp37.enc
 <code_set_name> "cp37"
index bd440c5..0669bef 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: cp932.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp dankogai $
+# $Id: cp932.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $
 #
 # ./compile -n cp932 -o Encode/cp932.ucm Encode/cp932.enc
 <code_set_name> "cp932"
index d0ac899..81c1f8d 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: cp936.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp dankogai $
+# $Id: cp936.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $
 #
 # ./compile -n cp936 -o Encode/cp936.ucm Encode/cp936.enc
 <code_set_name> "cp936"
index 6c31fd8..b2ce365 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: cp949.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp dankogai $
+# $Id: cp949.ucm,v 1.0 2002/03/28 23:26:25 dankogai Exp $
 #
 # ./compile -n cp949 -o Encode/cp949.ucm Encode/cp949.enc
 <code_set_name> "cp949"
index 3cb22e8..63798b8 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: cp950.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: cp950.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # ./compile -n cp950 -o Encode/cp950.ucm Encode/cp950.enc
 <code_set_name> "cp950"
index ad29af3..63df1c2 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: dingbats.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: dingbats.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 <code_set_name> "dingbats"
 <mb_cur_min> 1
index 01a6a7b..a6e03fd 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: euc-cn.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: euc-cn.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # ./compile -n euc-cn -o Encode/euc-cn.ucm Encode/euc-cn.enc
 <code_set_name> "euc-cn"
index 222b9ac..e0fddcb 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: euc-jp.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: euc-jp.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # compile -o Encode/euc-jp.ucm Encode/euc-jp.enc
 <code_set_name> "euc-jp"
index 6cd01ea..9c38a9b 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: euc-kr.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: euc-kr.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # ./compile -n euc-kr -o Encode/euc-kr.ucm Encode/euc-kr.enc
 <code_set_name> "euc-kr"
index 98c5666..9fe6e6d 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: gb12345.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: gb12345.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # ./compile -n gb12345 -o Encode/gb12345.ucm Encode/gb12345.enc
 #
index 1cbb72e..d38ccac 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: gb2312.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: gb2312.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # ./compile -n gb2312 -o Encode/gb2312.ucm Encode/gb2312.enc
 #
index dacbd37..f321fb7 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: gsm0338.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: gsm0338.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # ./compile -n gsm0338 -o Encode/gsm0338.ucm Encode/gsm0338.enc
 <code_set_name> "gsm0338"
index 821a25f..3897892 100644 (file)
@@ -1,7 +1,7 @@
 #
-# $Id: hp-roman8.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: hp-roman8.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
-# Written $Id: hp-roman8.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# Written $Id: hp-roman8.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 # ./compile -n roman8 -o Encode/roman8.ucm Encode/roman8.enc
 <code_set_name> "hp-roman8"
 <mb_cur_min> 1
index 645d36a..773c5fa 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ibm-1250.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: ibm-1250.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # *******************************************************************************
 # *
index f833b7b..476a466 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ibm-1251.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: ibm-1251.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # *******************************************************************************
 # *
index b46da25..859989d 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ibm-1252.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: ibm-1252.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # *******************************************************************************
 # *
index a88b1f0..500b704 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ibm-1253.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp dankogai $
+# $Id: ibm-1253.ucm,v 1.0 2002/03/28 23:26:26 dankogai Exp $
 #
 # *******************************************************************************
 # *
index bd6efbd..ff6edbe 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ibm-1254.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: ibm-1254.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # *******************************************************************************
 # *
index 04ca720..61a5c67 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ibm-1255.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: ibm-1255.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # *******************************************************************************
 # *
index b9fe72b..cc1fd7a 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ibm-1256.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: ibm-1256.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # *******************************************************************************
 # *
index 7aa43d6..1867b7d 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ibm-1257.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: ibm-1257.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # *******************************************************************************
 # *
index 1c978f7..fa5363c 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ibm-1258.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: ibm-1258.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # *******************************************************************************
 # *
index 48ac79d..50aeb65 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ir-165.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: ir-165.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n iso-ir-165 -o Encode/iso-ir-165.ucm Encode/iso-ir-165.enc
 <code_set_name> "iso-ir-165"
index 0407d16..979b1c8 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: jis0201.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: jis0201.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # compile -o Encode/jis0201.ucm Encode/jis0201.enc
 <code_set_name> "jis0201"
index bf80769..6d034ce 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: johab.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: johab.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -o johab.ucm johab.enc
 <code_set_name> "johab"
index 9fcd543..4eee360 100644 (file)
@@ -1,7 +1,7 @@
 #
-# $Id: koi8-f.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: koi8-f.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
-# Written $Id: koi8-f.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# Written $Id: koi8-f.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 # ./compile -n koi8-f -o Encode/koi8-f.ucm Encode/koi8-f.enc
 <code_set_name> "koi8-f"
 <mb_cur_min> 1
index dda1c1f..11a2bf7 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: koi8-r.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: koi8-r.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n koi8-r -o Encode/koi8-r.ucm Encode/koi8-r.enc
 <code_set_name> "koi8-r"
index 625b9cb..7c022d6 100644 (file)
@@ -1,7 +1,7 @@
 #
-# $Id: koi8-u.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: koi8-u.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
-# Written $Id: koi8-u.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# Written $Id: koi8-u.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 # ./compile -n koi8-u -o Encode/koi8-u.ucm Encode/koi8-u.enc
 <code_set_name> "koi8-u"
 <mb_cur_min> 1
index a3da0f2..db94cdf 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: ksc5601.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: ksc5601.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n ksc5601 -o Encode/ksc5601.ucm Encode/ksc5601.enc
 <code_set_name> "ksc5601-raw"
index 9268899..09c7c85 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macCentEuro.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macCentEuro.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macCentEuro -o Encode/macCentEuro.ucm Encode/macCentEuro.enc
 <code_set_name> "MacCentralEurRoman"
index ccdfdf2..8dfa69d 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macCroatian.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macCroatian.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macCroatian -o Encode/macCroatian.ucm Encode/macCroatian.enc
 <code_set_name> "MacCroatian"
index 45b5adb..4a4578c 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macCyrillic.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macCyrillic.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macCyrillic -o Encode/macCyrillic.ucm Encode/macCyrillic.enc
 <code_set_name> "MacCyrillic"
index 8a6893c..dfa5e91 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macDingbats.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macDingbats.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macDingbats -o Encode/macDingbats.ucm Encode/macDingbats.enc
 <code_set_name> "MacDingbats"
index b8c998f..995a52b 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macGreek.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macGreek.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macGreek -o Encode/macGreek.ucm Encode/macGreek.enc
 <code_set_name> "MacGreek"
index 022022e..4c744a5 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macIceland.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macIceland.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macIceland -o Encode/macIceland.ucm Encode/macIceland.enc
 <code_set_name> "MacIcelandic"
index 7610dee..07cf9a1 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macJapan.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macJapan.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macJapan -o Encode/macJapan.ucm Encode/macJapan.enc
 <code_set_name> "MacJapanese"
index 500c9c2..1fabc5a 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macRoman.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macRoman.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macRoman -o Encode/macRoman.ucm Encode/macRoman.enc
 <code_set_name> "MacRoman"
index d520533..360d55c 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macRumanian.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macRumanian.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macRumanian -o Encode/macRumanian.ucm Encode/macRumanian.enc
 <code_set_name> "MacRumanian"
index 56b4528..aabb0a0 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macSami.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macSami.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macSami -o Encode/macSami.ucm Encode/macSami.enc
 <code_set_name> "MacSami"
index ca93850..0a7b6aa 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macThai.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macThai.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macThai -o Encode/macThai.ucm Encode/macThai.enc
 <code_set_name> "MacThai"
index 28e61b5..858d200 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macTurkish.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macTurkish.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macTurkish -o Encode/macTurkish.ucm Encode/macTurkish.enc
 <code_set_name> "MacTurkish"
index 0c7336a..c64f704 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: macUkraine.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: macUkraine.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n macUkraine -o Encode/macUkraine.ucm Encode/macUkraine.enc
 <code_set_name> "MacUkrainian"
index 6be6963..6e25811 100644 (file)
@@ -1,7 +1,7 @@
 #
-# $Id: nextstep.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: nextstep.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
-# Written $Id: nextstep.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# Written $Id: nextstep.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 # ./compile -n nextstep -o Encode/nextstep.ucm Encode/nextstep.enc
 <code_set_name> "nextstep"
 <mb_cur_min> 1
index 77e7827..632af71 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: posix-bc.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: posix-bc.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # compile -n posix-bc -o Encode/posix-bc.ucm Encode/posix-bc.enc
 <code_set_name> "posix-bc"
index 723e974..9aa2794 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: shiftjis.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp dankogai $
+# $Id: shiftjis.ucm,v 1.0 2002/03/28 23:26:27 dankogai Exp $
 #
 # ./compile -n shiftjis -o Encode/shiftjis.ucm Encode/shiftjis.enc
 <code_set_name> "shiftjis"
index 32c9dcd..a003d99 100644 (file)
@@ -1,5 +1,5 @@
 #
-# $Id: symbol.ucm,v 1.0 2002/03/28 23:26:28 dankogai Exp dankogai $
+# $Id: symbol.ucm,v 1.0 2002/03/28 23:26:28 dankogai Exp $
 #
 # compile -n symbol -o Encode/symbol.ucm Encode/symbol.enc
 <code_set_name> "symbol"
index c46c716..0f02f01 100644 (file)
@@ -1,7 +1,7 @@
 #
-# $Id: viscii.ucm,v 1.0 2002/03/28 23:26:28 dankogai Exp dankogai $
+# $Id: viscii.ucm,v 1.0 2002/03/28 23:26:28 dankogai Exp $
 #
-# Written $Id: viscii.ucm,v 1.0 2002/03/28 23:26:28 dankogai Exp dankogai $
+# Written $Id: viscii.ucm,v 1.0 2002/03/28 23:26:28 dankogai Exp $
 # ./compile -n viscii -o Encode/viscii.ucm Encode/viscii.enc
 <code_set_name> "viscii"
 <mb_cur_min> 1
index a01ff71..0f0ed78 100644 (file)
@@ -9,11 +9,11 @@ my %tables =
               ]
      );
 
-my @exe_files = ();
-my @more_exe_files = qw(bin/enc2xs bin/piconv);
+my @exe_files = qw(bin/enc2xs);
+my @more_exe_files = qw(bin/piconv);
 
 for my $arg (@ARGV){
-    if ($arg eq "USE_SCRIPTS"){
+    if ($arg eq "MORE_SCRIPTS"){
        push @exe_files, @more_exe_files;
     }
 }
index 0898984..590834a 100644 (file)
@@ -22,11 +22,13 @@ To install this module type the following:
 
 To install scripts under bin/ directories also,
 
-   perl Makefile.PL USE_SCRIPTS
+   perl Makefile.PL MORE_SCRIPTS
    make
    make test
    make install
 
+by default, only bin/enc2xs is installed.
+
 DEPENDENCIES
 
 This module requires perl5.7.2 or later.
index 1acb613..803c264 100644 (file)
@@ -1,12 +1,16 @@
 #!../../../perl -w
 BEGIN {
-    unshift @INC, qw(../../lib ../../../lib ../../../../lib);
-    $ENV{PATH} .= ';../..;../../..;../../../..' if $^O eq 'MSWin32';
+    # fiddle with @INC iff I am a part of perl dist
+    if ($^X =~ m/\bminiperl$/o){
+       warn "Fixing \@INC for perl core.\n";
+       unshift @INC, qw(../../lib ../../../lib ../../../../lib);
+       $ENV{PATH} .= ';../..;../../..;../../../..' if $^O eq 'MSWin32';
+    }
 }
 use strict;
 use Getopt::Std;
 my @orig_ARGV = @ARGV;
-our $VERSION  = do { my @r = (q$Revision: 1.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
+our $VERSION  = do { my @r = (q$Revision: 1.1 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
 
 
 # These may get re-ordered.
@@ -1091,6 +1095,14 @@ The following files are created.
   My.pm      - Encode Submodule
   t/My.t     - test file
 
+=item 1.1.
+
+If you want *.ucm installed together with the modules, do as follows;
+
+  $ mkdir Encode
+  $ mv *.ucm Encode
+  $ enc2xs -M My Encode/*ucm
+
 =item 2.
 
 Edit the files generated.  You don't have to if you have no time AND no
index ae250ba..c7f08ae 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: piconv,v 1.0 2002/03/28 23:26:28 dankogai Exp dankogai $
+# $Id: piconv,v 1.0 2002/03/28 23:26:28 dankogai Exp $
 #
 use 5.7.3;
 use strict;
index 5d6b893..4ddf2ae 100644 (file)
@@ -1,12 +1,12 @@
 #
-# $Id: CJKConstants.pm,v 1.0 2002/03/28 23:26:28 dankogai Exp dankogai $
+# $Id: CJKConstants.pm,v 1.0 2002/03/28 23:26:28 dankogai Exp $
 #
 
 package Encode::CJKConstants;
 
 use strict;
 
-our $RCSID = q$Id: CJKConstants.pm,v 1.0 2002/03/28 23:26:28 dankogai Exp dankogai $;
+our $RCSID = q$Id: CJKConstants.pm,v 1.0 2002/03/28 23:26:28 dankogai Exp $;
 our $VERSION = do { my @r = (q$Revision: 1.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
 
 use Carp;
index 435c15e..3a8ce4d 100644 (file)
@@ -1,12 +1,12 @@
 #
-# $Id: H2Z.pm,v 1.0 2002/03/28 23:26:28 dankogai Exp dankogai $
+# $Id: H2Z.pm,v 1.0 2002/03/28 23:26:28 dankogai Exp $
 #
 
 package Encode::JP::H2Z;
 
 use strict;
 
-our $RCSID = q$Id: H2Z.pm,v 1.0 2002/03/28 23:26:28 dankogai Exp dankogai $;
+our $RCSID = q$Id: H2Z.pm,v 1.0 2002/03/28 23:26:28 dankogai Exp $;
 our $VERSION = do { my @r = (q$Revision: 1.0 $ =~ /\d+/g); sprintf "%d."."%02d" x $#r, @r };
 
 use Carp;
index f58063a..e7033eb 100644 (file)
@@ -1,8 +1,10 @@
 #!../perl
 
 BEGIN {
-    if (! -d 'blib' and -d 't'){ chdir 't' };
-    unshift @INC, '../lib';
+    if ($ENV{'PERL_CORE'}){
+       chdir 't';
+       unshift @INC, '../lib';
+    }
     require Config; import Config;
     if ($Config{'extensions'} !~ /\bEncode\b/) {
        print "1..0 # Skip: Encode was not built\n";
index 2e72a3f..749f913 100644 (file)
@@ -1,6 +1,8 @@
 BEGIN {
-    if (! -d 'blib' and -d 't'){ chdir 't' };
-    unshift @INC, '../lib';
+    if ($ENV{'PERL_CORE'}){
+        chdir 't';
+       unshift @INC, '../lib';
+    }
     require Config; import Config;
     if ($Config{'extensions'} !~ /\bEncode\b/) {
       print "1..0 # Skip: Encode was not built\n";
index 4e396e1..fc71a91 100644 (file)
@@ -1,6 +1,8 @@
 BEGIN {
-    if (! -d 'blib' and -d 't'){ chdir 't' };
-    unshift @INC, '../lib';
+    if ($ENV{'PERL_CORE'}){
+        chdir 't';
+        unshift @INC, '../lib';
+    }
     require Config; import Config;
     if ($Config{'extensions'} !~ /\bEncode\b/) {
       print "1..0 # Skip: Encode was not built\n";
index 457f204..c9b1dde 100644 (file)
@@ -1,7 +1,8 @@
 BEGIN {
-    if (! -d 'blib' and -d 't'){ chdir 't' };
-    chdir 't' if -d 't' and $ENV{PWD} !~ m,/Encode[^/]*$,o;
-    unshift @INC, '../lib';
+    if ($ENV{'PERL_CORE'}){
+        chdir 't';
+        unshift @INC, '../lib';
+    }
     require Config; import Config;
     if ($Config{'extensions'} !~ /\bEncode\b/) {
       print "1..0 # Skip: Encode was not built\n";
index 429a583..fd1c503 100644 (file)
@@ -1,7 +1,8 @@
 BEGIN {
-    if (! -d 'blib' and -d 't'){ chdir 't' };
-    chdir 't' if -d 't' and $ENV{PWD} !~ m,/Encode[^/]*$,o;
-    unshift @INC, '../lib';
+    if ($ENV{'PERL_CORE'}){
+        chdir 't';
+        unshift @INC, '../lib';
+    }
     require Config; import Config;
     if ($Config{'extensions'} !~ /\bEncode\b/) {
       print "1..0 # Skip: Encode was not built\n";
index 830eb86..a51017a 100644 (file)
@@ -1,6 +1,8 @@
 BEGIN {
-    if (! -d 'blib' and -d 't'){ chdir 't' };
-    unshift @INC,  '../lib';
+    if ($ENV{'PERL_CORE'}){
+       chdir 't';
+       unshift @INC, '../lib';
+    }
     require Config; import Config;
     if ($Config{'extensions'} !~ /\bEncode\b/) {
       print "1..0 # Skip: Encode was not built\n";
index cbebb22..0496613 100644 (file)
@@ -1,5 +1,5 @@
 #!/usr/bin/perl
-# $Id: ucm2table,v 1.0 2002/03/28 23:26:29 dankogai Exp dankogai $
+# $Id: ucm2table,v 1.0 2002/03/28 23:26:29 dankogai Exp $
 #
 
 use 5.006;