http://bugs.winehq.org/show_bug.cgi?id=23124
Could someone tell me if the attached patch would actually work?
It does compile and works correctly with LANG=en_PH.utf-8 but I'm don't know that:
1. Using an "ln -s" is acceptable, nor if it will work given some file systems may be unable to use soft links.
2. I have correctly edited configure, configure.ac and LINGUAS, or even if I need to edit both.
Thanks all,
Ken
On Tue, Oct 18, 2011 at 17:25, Ken Sharp kennybobs@o2.co.uk wrote:
http://bugs.winehq.org/show_bug.cgi?id=23124
Could someone tell me if the attached patch would actually work?
It does compile and works correctly with LANG=en_PH.utf-8 but I'm don't know that:
- Using an "ln -s" is acceptable, nor if it will work given some file
systems may be unable to use soft links.
This will break the mingw/cygwin builds, as well as compiling on fat32 (already broken, but let's not make it worse..).
You'll need to do this using autoconf/Makefile magic, $(LN_S), which will use `cp -p` on systems that don't support `ln -s`.