Oh, sorry.
The 'with-' is a special case, as a test is done on with-* to only reject invalid shell variable names.
I dont know if this should be fixed into autoconf or our configure code.
Cc'ing your request to wine-devel.
--- Rob Hughes rob@robhughes.com a écrit :
You have to type --with-lptn or whatever. It doesn't check it, verified here on Sunday's CVS source.
I've also noticed a lot of dialogs showing up in a couple different languages, but I suppose that's a different issue.
do you have examples ? Its easy to fix as they often are untranslated messages.
On Thu, 2003-05-01 at 11:15, Sylvain Petreolle wrote:
--- Patrick R Griffin griffinp@MIT.EDU a écrit :
"./configure --with-nptl" is correct. As Rob noticed, though, typing in "./configure --with-ltpn" or
some
other typo will compile successfully - no error message - but will not include the threading library corrections.
If this works call me Joan of Arc :)
[syl@snoop wine]$ ./configure --ltpn configure: error: unrecognized option: --ltpn Try `./configure --help' for more information.
===== Sylvain Petreolle (spetreolle at users dot sourceforge dot net) ICQ #170597259 No more War !
"What if tomorrow the War could be over ?" Morpheus, in "Reloaded".
For the Law of Oil and Fire, Im an European that lives in France. For all my Brothers and friends, Im a human living on Earth.
___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com
On Thu, 2003-05-01 at 12:17, Sylvain Petreolle wrote:
--- Rob Hughes rob@robhughes.com a écrit :
You have to type --with-lptn or whatever. It doesn't check it, verified here on Sunday's CVS source.
I've also noticed a lot of dialogs showing up in a couple different languages, but I suppose that's a different issue.
do you have examples ? Its easy to fix as they often are untranslated messages.
Most of the pop up dialogs are showing this, but sometimes it's only one button or the other. LANG is set to
LANG=LANG="en_US.UTF-8", which is the default in RH 8 and 9.
Thanks, Rob
Huh ? English is the default lang for wine, it shouldnt happen. Could you give a precise example ? Im using fr_FR.UTF-8 on RH9.
Most of the pop up dialogs are showing this, but sometimes it's only one button or the other. LANG is set to
LANG=LANG="en_US.UTF-8", which is the default in RH 8 and 9.
Thanks, Rob
===== Sylvain Petreolle (spetreolle at users dot sourceforge dot net) ICQ #170597259 No more War !
"What if tomorrow the War could be over ?" Morpheus, in "Reloaded".
For the Law of Oil and Fire, Im an European that lives in France. For all my Brothers and friends, Im a human living on Earth.
___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com
Here's a screen shot from a debug message. I'm assuming this uses the standard wine language code?
On Thu, 2003-05-01 at 15:54, Sylvain Petreolle wrote:
Huh ? English is the default lang for wine, it shouldnt happen. Could you give a precise example ? Im using fr_FR.UTF-8 on RH9.
Most of the pop up dialogs are showing this, but sometimes it's only one button or the other. LANG is set to
LANG=LANG="en_US.UTF-8", which is the default in RH 8 and 9.
Thanks, Rob
===== Sylvain Petreolle (spetreolle at users dot sourceforge dot net) ICQ #170597259 No more War !
"What if tomorrow the War could be over ?" Morpheus, in "Reloaded".
For the Law of Oil and Fire, Im an European that lives in France. For all my Brothers and friends, Im a human living on Earth.
Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com
--- Rob Hughes rob@robhughes.com a écrit :
Here's a screen shot from a debug message. I'm assuming this uses the standard wine language code?
"Unimplemented ...." hasnt been nationalised and will stay in english, whatever value LANG will be set to.
You're not using LANG=en_US in this case, am I right ?
[syl@snoop dlls]$ grep -n "&Nej" `greper "&Ja" .` ./user/resources/user32_Da.rc:64: PUSHBUTTON "&Nej", 7, 304, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP ./user/resources/user32_Sv.rc:62: PUSHBUTTON "&Nej", 7, 304, 56, 40, 14, WS_CHILD | WS_VISIBLE | WS_TABSTOP [syl@snoop dlls]$ vi ./user/resources/user32_En.rc
===== Sylvain Petreolle (spetreolle at users dot sourceforge dot net) ICQ #170597259 No more War !
"What if tomorrow the War could be over ?" Morpheus, in "Reloaded".
For the Law of Oil and Fire, Im an European that lives in France. For all my Brothers and friends, Im a human living on Earth.
___________________________________________________________ Do You Yahoo!? -- Une adresse @yahoo.fr gratuite et en français ! Yahoo! Mail : http://fr.mail.yahoo.com
On Thu, 2003-05-01 at 16:36, Sylvain Petreolle wrote:
--- Rob Hughes rob@robhughes.com a écrit :
Here's a screen shot from a debug message. I'm assuming this uses the standard wine language code?
"Unimplemented ...." hasnt been nationalised and will stay in english, whatever value LANG will be set to.
You're not using LANG=en_US in this case, am I right ?
I'm sorry, is this directed to me?
Rob
Rob Hughes wrote:
Here's a screen shot from a debug message. I'm assuming this uses the standard wine language code?
On Thu, 2003-05-01 at 15:54, Sylvain Petreolle wrote:
Huh ? English is the default lang for wine, it shouldnt happen. Could you give a precise example ? Im using fr_FR.UTF-8 on RH9.
Most of the pop up dialogs are showing this, but sometimes it's only one button or the other. LANG is set to
LANG=LANG="en_US.UTF-8", which is the default in RH 8 and 9.
Thanks, Rob
I'm thinking of three possible explanations for this:
1. Tracing the specific dialog Rob showed, it calls "MessageBoxA", which calls "MessageBoxExA" with a language identifier "LANG_DEFAULT". According to http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui... the langid parameter is "reserved". Can anyone confirm that there is any version of Windows that uses it? 2. Even if it did what it was supposed to do, shouldn't the paramter at windows/msgbox.c, line 347, say "MAKELANG(LANG_NEUTRAL,SUBLANG_DEFAULT)" instead of "LANG_DEFAULT"? 3. The English resource don't have "SUBLANG_DEFAULT" for something (does not appear to be the case in latest CVS).
Rob - what version of Wine are you using? Also, can you please paste here the output of the command "locale"?
On Fri, 2003-05-02 at 01:53, Shachar Shemesh wrote:
Rob Hughes wrote:
Here's a screen shot from a debug message. I'm assuming this uses the standard wine language code?
On Thu, 2003-05-01 at 15:54, Sylvain Petreolle wrote:
Huh ? English is the default lang for wine, it shouldnt happen. Could you give a precise example ? Im using fr_FR.UTF-8 on RH9.
Most of the pop up dialogs are showing this, but sometimes it's only one button or the other. LANG is set to
LANG=LANG="en_US.UTF-8", which is the default in RH 8 and 9.
Thanks, Rob
I'm thinking of three possible explanations for this:
- Tracing the specific dialog Rob showed, it calls "MessageBoxA", which calls "MessageBoxExA" with a language identifier "LANG_DEFAULT". According to http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui... the langid parameter is "reserved". Can anyone confirm that there is any version of Windows that uses it?
- Even if it did what it was supposed to do, shouldn't the paramter at windows/msgbox.c, line 347, say "MAKELANG(LANG_NEUTRAL,SUBLANG_DEFAULT)" instead of "LANG_DEFAULT"?
- The English resource don't have "SUBLANG_DEFAULT" for something (does not appear to be the case in latest CVS).
Rob - what version of Wine are you using? Also, can you please paste here the output of the command "locale"?
I'm running CVS from this past Sunday. Locale output is:
LANG=en_US.UTF-8 LC_CTYPE="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_COLLATE="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_PAPER="en_US.UTF-8" LC_NAME="en_US.UTF-8" LC_ADDRESS="en_US.UTF-8" LC_TELEPHONE="en_US.UTF-8" LC_MEASUREMENT="en_US.UTF-8" LC_IDENTIFICATION="en_US.UTF-8" LC_ALL=
This is a shot in the dark. Please let me know if the attached patch fixes your problem.
Shachar
Rob Hughes wrote:
On Fri, 2003-05-02 at 01:53, Shachar Shemesh wrote:
Rob Hughes wrote:
Here's a screen shot from a debug message. I'm assuming this uses the standard wine language code?
On Thu, 2003-05-01 at 15:54, Sylvain Petreolle wrote:
Huh ? English is the default lang for wine, it shouldnt happen. Could you give a precise example ? Im using fr_FR.UTF-8 on RH9.
Most of the pop up dialogs are showing this, but sometimes it's only one button or the other. LANG is set to
LANG=LANG="en_US.UTF-8", which is the default in RH 8 and 9.
Thanks, Rob
I'm thinking of three possible explanations for this:
- Tracing the specific dialog Rob showed, it calls "MessageBoxA", which calls "MessageBoxExA" with a language identifier "LANG_DEFAULT". According to http://msdn.microsoft.com/library/default.asp?url=/library/en-us/winui/winui... the langid parameter is "reserved". Can anyone confirm that there is any version of Windows that uses it?
- Even if it did what it was supposed to do, shouldn't the paramter at windows/msgbox.c, line 347, say "MAKELANG(LANG_NEUTRAL,SUBLANG_DEFAULT)" instead of "LANG_DEFAULT"?
- The English resource don't have "SUBLANG_DEFAULT" for something (does not appear to be the case in latest CVS).
Rob - what version of Wine are you using? Also, can you please paste here the output of the command "locale"?
I'm running CVS from this past Sunday. Locale output is:
LANG=en_US.UTF-8 LC_CTYPE="en_US.UTF-8" LC_NUMERIC="en_US.UTF-8" LC_TIME="en_US.UTF-8" LC_COLLATE="en_US.UTF-8" LC_MONETARY="en_US.UTF-8" LC_MESSAGES="en_US.UTF-8" LC_PAPER="en_US.UTF-8" LC_NAME="en_US.UTF-8" LC_ADDRESS="en_US.UTF-8" LC_TELEPHONE="en_US.UTF-8" LC_MEASUREMENT="en_US.UTF-8" LC_IDENTIFICATION="en_US.UTF-8" LC_ALL=