> perl: warning: Setting locale failed.
> perl: warning: Please check that your locale settings:
> LANGUAGE = (unset),
> LC_ALL = (unset),
> LANG = "koi8-r"
> are supported and installed on your system.
> perl: warning: Falling back to the standard locale ("C").
The problem is that there is no such a "LANG" as "koi8-r". You should set it to
"ru",or "ru_SU", or "ru_RU". Perl is very sensetive about locales and therefore
is convenient to check your locale settings. So, do export LANG="ru" and you
should be fine. Just for fun, run perl without any arguments and if it
complains again, than something is still wrong. To see a list of available
locales on your system type locale -a. "ru" should be listed there.
It's not really necessary to do anything with LANG once you've compiled with
--enable-locales-fix. As far as I remember it does not affect the messages
themselves but the interface messages only.