Please do not send personal mail with Cygwin questions unless specifically requested. The Cygwin mailing list is the proper place to address all Cygwin inquiries. For your convenience, I've redirected this query there and set the Reply-To appropriately.
You might also wish to repeat your search of the archives regarding CD-ROM installation, as there have been some more discussions recently. Igor On Wed, 11 Jun 2003, Yen(2) Chun(1) Mei(3) wrote: > Dear sir : > > I search the mailing-list to solve my problems. But I don't > There are two problems about Cygwin. > > I. Using CD-ROM to setup Cygwin > > > 1. I download the files from mirror site(ftp://cygwin.csie.ntu.edu.tw) > > 2. I write a script file to seperate src & exe file (attach file:shelley.pl) > ex: the CD contains > release\a2ps\a2ps-4.12-1.tar.bz2 > release\a2ps\md5.sum > release\a2ps\setup.hint > > 3. reference mailing list > http://sources.redhat.com/ml/cygwin/2003-05/msg00843.html > http://sources.redhat.com/ml/cygwin/2002-09/msg00689.html > http://sources.redhat.com/ml/cygwin/2002-10/msg00211.html > > 4. when cygwin setup finished, the error messages show the following > http://sources.redhat.com/ml/cygwin/2003-02/msg00683.html > > I don't know why ? > > > II. I18N for Cygwin > > 1. I want to use Cygwin in Chinese output and input. > > 2. I find about I18N from mailing-list hardly. the following mention a little > > http://sources.redhat.com/ml/cygwin/2001-07/msg00484.html > http://www.jaist.ac.jp/~fujieda/cygwin/i18n.shtml > (This data is too old to patch it !!) > http://skeishi.hp.infoseek.co.jp/cygwin+X/ > (This site I can't read Japanese) > > 3. Could you tell me I18N for Cygwin situtations ? > > 4. How to change locale into zh_TW.Big5 ? (attach file : locale.c) > > > Thanks in advance !! > Shelley > -- > Chaoyang University of Technology > WebMail http://webmail.cyut.edu.tw -- http://cs.nyu.edu/~pechtcha/ |\ _,,,---,,_ [EMAIL PROTECTED] ZZZzz /,`.-'`' -. ;-;;,_ [EMAIL PROTECTED] |,4- ) )-,_. ,\ ( `'-' Igor Pechtchanski, Ph.D. '---''(_/--' `-'\_) fL a.k.a JaguaR-R-R-r-r-r-.-.-. Meow! "I have since come to realize that being between your mentor and his route to the bathroom is a major career booster." -- Patrick Naughton
shelley.pl
Description: Binary data
#define USE_XOPEN_SOURCE #include <stdio.h> #include <locale.h> #ifdef USE_XOPEN_SOURCE # include <langinfo.h> #endif #include <X11/Xlib.h> #include <X11/Xlocale.h> main() { printf("LC_CTYPE = %s\n", setlocale(LC_CTYPE, "")); #ifdef USE_XOPEN_SOURCE printf("encoding = %s\n", nl_langinfo(CODESET)); #endif if (XSupportsLocale() == True) printf("X Locale = OK\n"); }
-- Unsubscribe info: http://cygwin.com/ml/#unsubscribe-simple Problem reports: http://cygwin.com/problems.html Documentation: http://cygwin.com/docs.html FAQ: http://cygwin.com/faq/