http://bugs.winehq.com/show_bug.cgi?id=1568
------- Additional Comments From marcus(a)jet.franken.de 2003-03-07 00:48 -------
what is the result of echo $LANG on the commandline?
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1568
Summary: german keyboard layout detection doesn work
Product: Wine
Version: 20030618
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P1
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: pilletiai(a)gmx.net
i compiled wine without any options and installed flashfxp.
when i try to execute flashfxp (/usr/local/bin/wine /home/user/wine/c/Program\
Files/FlashFXP/FlashFXP.exe) i always get an error message about the keyboard.
here the message:
-------
fixme:win32:PE_CreateModule Unknown directory 15 ignored
fixme:keyboard:X11DRV_KEYBOARD_DetectLayout Your keyboard layout was not found!
Using closest match instead (German keyboard layout without dead keys) for
scancode mapping.
Please define your layout in dlls/x11drv/keyboard.c and submit them
to us for inclusion into future Wine releases.
See the Wine User Guide, chapter "Keyboard" for more information.
-------
from this moment on the system hangs. i looked into the keyboard.c file and
there i found the correct keyboard layout for my keyboard. so i didn't change
anything. i tried different keyboard settings in X11 too (US, German, German
latin1, German latin1 no dead keys). i have a german logitech keyboard and i'm
running redhat linux 9.0.
i could install flashfxp despite of the keyboard error message.
hope you can help me
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1567
Summary: Capella 2002 - welcome-screen doesn't disappear
Product: Wine
Version: 20030618
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: u.herbst(a)t-online.de
Hi,
I tried to run "Capella 2002" on Suse Linux 8.0 via wine.
Problem: at startup there's a welcome-screen popping up.
I can see the application-windows behind it but there's
no way to get them in focus. (On windows the welcome-screen
disappears after a few seconds).
You can try it out for your self. There's a free demo available
at "www.capella.de" it's name is "cap2002demo.exe".
Kind regards
Ulrich
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1566
jr-winebugs(a)quo.to changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From jr-winebugs(a)quo.to 2003-02-07 15:21 -------
Whoops, missed that <= 0 check... Thanks.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1566
------- Additional Comments From julliard(a)winehq.com 2003-02-07 14:50 -------
That's already the case actually (though we check for <=0 so it will be
capped at 0x8000, shouldn't really matter).
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1566
Summary: Module reference count (LoadCount) is not capped, could
wrap to zero?
Product: Wine
Version: 20030618
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: jr-winebugs(a)quo.to
Looking at dlls/ntdll/loader.c, it doesn't appear that the module reference
counts are capped; they're just blindly incremented. Because of this, if an
application calls LoadLibrary() on the same DLL enough times, the reference
count could wrap around to zero, and this would obviously cause problems.
Windows (both 9x and NT kernels) cap library reference counts at 0xffff.
Further, once the reference count reaches 0xffff, any FreeLibrary() calls are
ignored; the reference count stays at 0xffff. (This makes sense: if an
application calls LoadLibrary() a million times, then 0xffff calls to
FreeLibrary() shouldn't free the DLL.)
The code in loader.c that increments & decrements reference counts should
probably look like this, respectively:
if ((*pwm)->ldr.LoadCount < 0xffff)
(*pwm)->ldr.LoadCount++;
if (wm->ldr.LoadCount < 0xffff)
--wm->ldr.LoadCount;
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1565
Summary: can't run Lotus Notes 5.0.7
Product: Wine
Version: 20030618
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: twhlai(a)sympatico.ca
I'm trying to run Lotus Notes 5.0.7 under Red Hat 9.0 (dual-boot with WinME,
Notes is in a WinME FAT32 partition) and wine-20030618-1rh9winehq.i686.rpm, and
I'm getting the following errors.
fixme:ole:MSFT_DoTypeInfo Assign constructor/destructor memid
fixme:ole:MSFT_DoTypeInfo Assign constructor/destructor memid
fixme:console:SetConsoleCtrlHandler ((nil),0) - no error checking or testing yet
fixme:console:SetConsoleCtrlHandler (0x115dfd0,1) - no error checking or testing yet
What should I do? Is there any workaround?
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1561
------- Additional Comments From syjef(a)mdanderson.org 2003-02-07 07:48 -------
The same behaviour I see on -CURRENT. Right down to using KDE-3.1.2.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1564
Summary: in wcmd.exe, "if exist %directory%" always false
Product: Wine
Version: 20030508
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: winehq(a)ellisw.net
"if exist %somefile%" works correctly. But on a directory, it always returns false. So a
statement like:
if not exist %mydir% mkdir %mydir%
will always execute the mkdir statement, even if the directory already exists.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1563
Summary: [wine-doc]: superfluous </book>
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-documentation
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rickscafe.casablanca(a)gmx.net
this was reported to mandrake cooker:
>jade:/home/one/rpm/BUILD/wine-20030618/documentation/wine-doc.sgml:141:8:E:
>end tag for element "BOOK" which is not open
the </book> tag is still there in current CVS
Patch:
Index: wine/documentation/wine-doc.sgml
===================================================================
RCS file: /home/wine/wine/documentation/wine-doc.sgml,v
retrieving revision 1.11
diff -r1.11 wine-doc.sgml
141d140
< </book>
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.