From owner-FreeBSD-tech-jp@jp.freebsd.org  Sat Jun 16 01:55:10 2001
Received: (from daemon@localhost)
	by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) id BAA74184;
	Sat, 16 Jun 2001 01:55:10 +0900 (JST)
	(envelope-from owner-FreeBSD-tech-jp@jp.FreeBSD.org)
Received: from st41.arena.ne.jp (st41.arena.ne.jp [210.150.208.2])
	by castle.jp.freebsd.org (8.9.3+3.2W/8.7.3) with ESMTP id BAA74179
	for <FreeBSD-tech-jp@jp.FreeBSD.org>; Sat, 16 Jun 2001 01:55:10 +0900 (JST)
	(envelope-from issei@issei.org)
Received: (qmail 22758 invoked from network); 16 Jun 2001 01:55:08 +0900
Received: from unknown (HELO loki) (211.121.250.160)
  by issei.org with SMTP; 16 Jun 2001 01:55:08 +0900
Date: Sat, 16 Jun 2001 01:57:17 +0900
From: Issei Suzuki <issei@issei.org>
To: tcsh@mx.gw.com
Cc: FreeBSD-tech-jp@jp.FreeBSD.org, i18n@FreeBSD.org
Message-Id: <20010616014130.9052.ISSEI@issei.org>
MIME-Version: 1.0
Content-Type: text/plain; charset="US-ASCII"
Content-Transfer-Encoding: 7bit
X-Mailer: Becky! ver. 2.00.06
Reply-To: FreeBSD-tech-jp@jp.freebsd.org
Precedence: list
X-Distribute: distribute version 2.1 (Alpha) patchlevel 24e+010328
X-Sequence: FreeBSD-tech-jp 3103
Subject: [FreeBSD-tech-jp 3103] Patch for FreeBSD-current
Errors-To: owner-FreeBSD-tech-jp@jp.freebsd.org
Sender: owner-FreeBSD-tech-jp@jp.freebsd.org
X-Originator: issei@issei.org

Hi,

Recently, FreeBSD project has decided to rename their locale name,
so please apply the following patch.

c.f.
 http://docs.freebsd.org/mail/archive/2001/freebsd-i18n/20010603.freebsd-i18n.html
 http://docs.freebsd.org/mail/archive/2001/freebsd-i18n/20010610.freebsd-i18n.html

Thanks,

-- 
Issei.-

diff -ur tcsh-6.10.01/tc.const.c tcsh-6.10.01-fbsd/tc.const.c
--- tcsh-6.10.01/tc.const.c	Sat Jun 16 01:20:26 2001
+++ tcsh-6.10.01-fbsd/tc.const.c	Sat Jun 16 01:30:34 2001
@@ -147,6 +147,9 @@
 #   elif defined(aix)
 Char STRLANGEUCJPB[]	= { 'j', 'a', '_', 'J', 'P', '\0' };
 Char STRLANGEUCKRB[]	= { 'k', 'o', '_', 'K', 'R', '\0' };
+#   elif defined(__FreeBSD__)
+Char STRLANGEUCJPB[]	= { 'j', 'a', '_', 'J', 'P', '.', 'e', 'u', 'c', 'J', 'P', '\0' };
+Char STRLANGEUCKRB[]	= { 'k', 'o', '_', 'K', 'R', '.', 'e', 'u', 'c', 'K', 'R', '\0' };
 #   else
 Char STRLANGEUCJPB[]	= { '\0' };
 Char STRLANGEUCKRB[]	= { '\0' };

