You are not logged in.
Pages: 1
if you want to be able to type and read in your native language within xterm (may be other terminal emulators too), for example to use a dictionary (console based:), or read a native-language text with less:) or whatever you want.
then probably
xterm -en cp1251
* cp1251 is in my case, yours encoding may be different
will do the job
the problem is that, xterm rely on luit to do the conversion between utf8 end local encoding... this is not a big issue, except luit is a little bugy:)
the simptoms are as follows:
sometimes xterm works, sometimes no
(in my case, the ratio was 4 time dosent work, 1 time work, and if a ran it as root, 9 times dosent work, 1 time work, but the ratios are not constant...)
after serious googling, the problem was isolated in luit (which is now part of xorg or xfree).
here is the link, that provide the right patch
http://www.linuxfromscratch.org/patches … ce-1.patch
personally i use the xorg form testing
and i found, that luit.c from the xorg source is the same as at the official page
http://www.pps.jussieu.fr/~jch/software/luit/
then i decided to give a chance to the above patch, to do the job:)
just have create a file patch_luite which contains the patch form the above, in the directory when xorg PKGBUILD is.
then modify PKGBUILD`s sources to include luit_patch
and dont forget, to add a line, that will patch the xorg with luit_patch...
here are extracts of the PKGBUILD
source=(http://ftp.skynet.be/pub/ftp.x.org/pub/X${pkgver}/src-single/X${pkgver}-
src.tar.bz2
http://www.joerg-pommnitz.de/TrueType/ttmkfdir.tar.gz
xdm.pam
libGL.la
.....
.....
luit_patch).....
.....
patch -Np1 -i ../mozilla-flash.patch || return 1
patch -Np1 -i ../xorg-redhat-die-ugly-pattern-die-die-die.patch || return 1
patch -Np1 -i ../luit_patch || return 1
then a usual makepkg, works
Offline
Pages: 1