mailing list of musl libc
 help / color / mirror / code / Atom feed
From: Rich Felker <dalias@libc.org>
To: musl@lists.openwall.com
Subject: Re: musl and legacy win32 apps through wine
Date: Wed, 18 Nov 2015 11:24:18 -0500	[thread overview]
Message-ID: <20151118162418.GN3818@brightrain.aerifal.cx> (raw)
In-Reply-To: <20151118133244.3ff957eb@r2lynx>

On Wed, Nov 18, 2015 at 01:32:44PM +0700, Рысь wrote:
> I managed to get it work easily - the fact that Wine does all encoding
> by it's own powers happily eases the task, and drafts to using the
> simple LD_PRELOAD hack:
> 
> % cat libbrklocale.c                                                                               
> #include <locale.h>
> #include <string.h>
> 
> char d[64];
> 
> char *setlocale(int cat, const char *locale)
> {
> 	char *p = d;
> 
> 	strcpy(d, "ru_RU.UTF-8");
> 	return p;
> }
> 
> % cc -shared -fPIC libbrklocale.c -o libbrklocale.so
> % LD_PRELOAD=./libbrklocale.so wine prog1251.exe
> 
> I can hardcore it into Wine itself by calling appropriate setlocale
> from somewhere, but it's easier to use it as is since my Wine setup is
> going into separate chroot directory.
> 
> The problem was discovered with Wine debugging facility, it got mixed
> locale with mixed "C" and "ru_RU.UTF-8" for
> LC_ALL/LC_MESSAGES/LC_CTYPE. It used latter for encoding, and text was
> garbled. Now everything is consistent and works flawlessly.

Are you perhaps using an older version of musl? Recent versions should
report the locale you requested for all categories, not a mix of C and
your requested locale.

Rich


  reply	other threads:[~2015-11-18 16:24 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-17  6:21 Рысь
2015-11-17 21:02 ` Rich Felker
2015-11-18  2:45   ` Рысь
2015-11-18  6:32     ` Рысь
2015-11-18 16:24       ` Rich Felker [this message]
2015-11-18 16:34         ` Рысь

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20151118162418.GN3818@brightrain.aerifal.cx \
    --to=dalias@libc.org \
    --cc=musl@lists.openwall.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).