http://bugs.winehq.org/show_bug.cgi?id=8029
Summary: Heart of Darkness doesn't run or output any error.
Product: Wine
Version: 0.9.34.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zajec5(a)gmail.com
I installed Heart of Darness without any problem. When I try to run it nothing
happens, and console doesn't give any errors. Is looks like that:
wine HODWin32.exe
preloader: Warning: failed to reserve range 00000000-60000000
Then it hangs and nothing happen. I am not sure if it is usefull bug I made
WINEDEBUG=warn+all wine ./HODWin32.exe 2> ~/hod.wine.log
bzip2 ~/hod.wine.log
Component "wine-misc" is probably incorrect but I don't know which one is OK.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=7909
------- Additional Comments From focht(a)gmx.net 2007-12-04 10:05 -------
Hello again,
some update and possible solution :)
Seems i misinterpreted returned X11DRV_GetAsyncKeyState() flag field.
First call to X11DRV_GetAsyncKeyState() returns "rbutton down seen" (key is
pressed + key got pressed since last time).
All consecutive calls to X11DRV_GetAsyncKeyState() return "rbutton down seen"
(key is pressed).
No up state is reached/seen.
After putting additional debugging code and trace messages it became obvious.
--- trace ---
trace:event:process_events ButtonPress for hwnd/window 0x10024/3a00001
trace:cursor:X11DRV_send_mouse_input before: (2) -> 0
trace:cursor:X11DRV_send_mouse_input after: (2) -> ffff8001
trace:event:process_events MotionNotify for hwnd/window 0x10024/3a00001
trace:cursor:X11DRV_MotionNotify hwnd 0x10024, event->is_hint 0
trace:cursor:X11DRV_send_mouse_input before: (2) -> ffff8001
trace:cursor:X11DRV_send_mouse_input after: (2) -> ffff8001
trace:event:process_events processed 2 events
...
trace:key:X11DRV_GetAsyncKeyState before: (2) -> ffff8001
trace:key:X11DRV_GetAsyncKeyState after: (2) -> ffff8001
....
trace:key:X11DRV_GetAsyncKeyState before: (2) -> ffff8000
trace:key:X11DRV_GetAsyncKeyState after: (2) -> ffff8000
...
--- trace ---
The problematic code is X11DRV_GetAsyncKeyState().
--- snip dlls/winex11.drv/keyboard.c ---
SHORT X11DRV_GetAsyncKeyState(INT key)
{
SHORT retval;
X11DRV_MsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_KEY, 0 );
retval = ((key_state_table[key] & 0x40) ? 0x0001 : 0) |
((key_state_table[key] & 0x80) ? 0x8000 : 0);
key_state_table[key] &= ~0x40;
TRACE_(key)("(%x) -> %x\n", key, retval);
return retval;
}
--- snip dlls/winex11.drv/keyboard.c ---
Looking at the pseudo code from my posting earlier and you will know.
The application basically "busy loops" using GetAsyncKeyState().
That means GetAsyncKeyState() has to handle not only keyboard but mouse button
events too!
In short: X11DRV_MsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_KEY ...) is not
enough, it filters out mouse button state messages (button down/up).
Modify the filter to "QS_KEY | QS_MOUSEBUTTON" (dont use QS_ALLINPUT!)
--- snip dlls/winex11.drv/keyboard.c ---
SHORT X11DRV_GetAsyncKeyState(INT key)
{
SHORT retval;
X11DRV_MsgWaitForMultipleObjectsEx( 0, NULL, 0, QS_KEY | QS_MOUSEBUTTON, 0 );
retval = ((key_state_table[key] & 0x40) ? 0x0001 : 0) |
((key_state_table[key] & 0x80) ? 0x8000 : 0);
key_state_table[key] &= ~0x40;
TRACE_(key)("(%x) -> %x\n", key, retval);
return retval;
}
--- snip dlls/winex11.drv/keyboard.c ---
Now it handles mouse button input too - which updates the key_state_table used
by X11DRV_GetAsyncKeyState().
I tested with photoshop 5.5 tril and it worked like a charm, lockup gone,
context menu shows up on right mouse click :)
If any other applications/versions suffer from this one, please retest it using
this workaround.
Regards.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=7910
------- Additional Comments From Wouter_Cox(a)yahoo.co.uk 2007-12-04 08:26 -------
I can confirm this.
Both Wine 0.9.33 and 0.9.34 have this problem. I believe this problem was
introduced in either Wine 0.9.32 or 0.9.33 (sorry I did not keep notes when it
changed).
Currently I am using 0.9.34 currently and this happens in all menus as well as
on the intro screen.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=8028
Summary: WM_SETREDRAW not affected
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-comctl32
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: azamata2006(a)yandex.ru
Hi!
The SendMessage(Hwnd, WM_SETREDRAW, 0, 0) is not work - ListView in vsReport
mode flicking and scrolls then updated in my own program.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=4516
winehq(a)nanonanonano.net changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |winehq(a)nanonanonano.net
------- Additional Comments From winehq(a)nanonanonano.net 2007-12-04 06:36 -------
As a workaround, setting the windows version to win98 (for this application)
solves this problem and allows the application to function. (Perhaps this
provides the necessary information for someone to work out what's wrong here?)
(Also, if you hit OK enough times on the error dialogue box (try space bar...),
then the application does work...)
Wine version tested: 0.9.33. (0.9.34 cannot install this app
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=7552
rmh(a)aybabtu.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From rmh(a)aybabtu.com 2007-12-04 05:34 -------
Not sure if this is the same bug as 2155. I can't reproduce it because when
running conquer without virtual desktop, input in the login window is disabled,
and I can't test the "wrong password" messagebox.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=8022
------- Additional Comments From lich(a)math.spbu.ru 2007-12-04 04:41 -------
>1. If I do 'LC_ALL=C wineconsole --backend=user cmd /K xcopy /?' I see the
>spaced chars you mention. If I do 'wine cmd /K xcopy /?' if outputs ok - Can
>you confirm this is true for you
Confirm. OK.
>2. If you do wine cmd /K dir, do the characters appear ok? Are the chars in
>the listing below actually russian characters (ie not a-z etc), the first file
>appears ok which is one I assume is pure a-z 0-9?
>- This would see if the problem is actually the same as (1)
1) terminal with koi8-r font:
Bad, but better than --backend=user. I can see russian symbols but in
ANSI(cp1251) locale, not OEM(cp866). I can pass the text through "iconv -f
cp1251 -t koi8-r" to see correct text.
2) terminal with cp1251 font:
a. LC_ALL=ru_RU.KOI8-R cmd /K dir
The default locale is ru_RU.KOI8-R. This does not suit for cp1251 font. BUT! I
can see russian filenames correct.
LC_ALL=ru_RU.KOI8-R cmd /K help
Russian letters are OK.
b. LC_ALL=ru_RU.CP1251 cmd /K dir
Locale matches font enconing. But!
Russian filenames are invalid.
LC_ALL=ru_RU.CP1251 cmd /K help
English text only. WINE does not honour ru_RU.CP1251, but Linux does.
c. font UTF8 - nightmare.
>3. Since I dont know Russian, any thoughts on how to create a file with
>russian characters and set my locale in a window so I can recreate that part
>here?
Hmm... Try your native locate in various cases: Unicode and not unicode.
Maybe, it is related to OEM/ANSI dualism?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=7663
rmh(a)aybabtu.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #5411 is|0 |1
obsolete| |
------- Additional Comments From rmh(a)aybabtu.com 2007-12-04 03:19 -------
Created an attachment (id=5750)
--> (http://bugs.winehq.org/attachment.cgi?id=5750&action=view)
new, simpler patch
Actualy, this might be quite overkill. I propose this simpler change, that
enables cmdline rewriting when path is absolute. This covers the most common
cases:
- Running wine from the desktop environment
- wine /media/cdrom0/Setup.exe
- wine ~/.wine/drive_c/foo.exe
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=7522
M.B.Lankhorst(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |ASSIGNED
Ever Confirmed| |1
------- Additional Comments From M.B.Lankhorst(a)gmail.com 2007-12-04 02:46 -------
I think I know what causes it, sent in a fix, basically alsa doesn't have
directsound support, but it did initialise wave-in as directsound which causes
a hang. Already sent in a fix, I am waiting for it to be committed.
Could you try if using alsa driver at 'Emulation' acceleration fixes the
problem?
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=6144
M.B.Lankhorst(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From M.B.Lankhorst(a)gmail.com 2007-12-04 02:41 -------
While it is the problem that appears in wine, I'm not sure wether this is a
wine bug or alsa bug if an alsa changed caused it, I'll accept the bug for
now.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=7889
M.B.Lankhorst(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |ASSIGNED
Ever Confirmed| |1
------- Additional Comments From M.B.Lankhorst(a)gmail.com 2007-12-04 02:37 -------
probably occurs because of some changes to winealsa, most likely reverting git
commit d2f29311caa8041bd992a3867d71d6311c7ff8fa will fix it, I plan on doing a
proper fix in summer
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=8027
Summary: cannot send faxes
Product: Wine
Version: 0.9.34.
Platform: PC
URL: http://www.efax.com/en/efax/twa/page/download
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: prahal(a)yahoo.com
efax use dav and http basic auth to send the fax. It fails. Probably a cookie
issue. I cannot gives a backtrace as it contains my authentication items but
WINEDEBUG="trace+wininet" provides them.
One can have a free account for 30 days for testing.
Regards
Alban
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=3111
M.B.Lankhorst(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From M.B.Lankhorst(a)gmail.com 2007-12-04 02:24 -------
Closing bug for now, if problem went away in 0.9.34 I see no reason to keep it
open, if there are still problems with wine > 0.9.34 reopen it.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=3080
M.B.Lankhorst(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |ABANDONED
------- Additional Comments From M.B.Lankhorst(a)gmail.com 2007-12-04 02:21 -------
It is not needed any more to create special configs for dmix, and mmap dmix
seems to work fine now, closing bug.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=3502
M.B.Lankhorst(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |ben(a)atomnet.co.uk
------- Additional Comments From M.B.Lankhorst(a)gmail.com 2007-12-04 02:16 -------
*** Bug 4908 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=4908
M.B.Lankhorst(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From M.B.Lankhorst(a)gmail.com 2007-12-04 02:16 -------
Seems to be a duplicate of an existing bug and bug report is rather old, so
closing
*** This bug has been marked as a duplicate of 3502 ***
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=4397
------- Additional Comments From steve(a)dir.bg 2007-12-04 02:03 -------
Created an attachment (id=5749)
--> (http://bugs.winehq.org/attachment.cgi?id=5749&action=view)
The output in the console
I hope it shows that the program refuses to connect to a firebird database over
the network and this time I really wasn't able to make it crash like before but
I suppose that's because it doesn't get to the point where it checks the
available printers in the system.
--
Configure bugmail: http://bugs.winehq.org/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.org/show_bug.cgi?id=8022
dmitry(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.