http://bugs.winehq.org/show_bug.cgi?id=2581
Summary: Keyboard ony work when cursor locate at windows top
title bar area
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: azure(a)totem.ca
I find out this problem since I start using wine years ago.
I Start using Wine since Redhat 7.3 and now I am using Fedora Core 3 and still
had the same problem.
I had the same problem with RXVT and they send me some code to modify the RXVT
and re-compile it and it work.
The following is how the code change in rxvt
=======================================================================
this is caused by a design flaw in X11, how synergy snoops for
events, and how rxvt handles keyboard events. there may be
something i can do to synergy to avoid the problem but fixing
rxvt is a whole lot simpler. i filed a bug against rxvt and
included a patch, which i've included below if you'd like to
apply it to rxvt 2.7.10 yourself.
cheers,
-chris
diff -ur rxvt-2.7.10-old/src/init.c rxvt-2.7.10/src/init.c
--- rxvt-2.7.10-old/src/init.c Tue Dec 3 21:21:39 2002
+++ rxvt-2.7.10/src/init.c Sat May 15 16:41:46 2004
@@ -1170,7 +1170,11 @@
#endif
XDefineCursor(r->Xdisplay, r->TermWin.vt, r->TermWin_cursor);
XSelectInput(r->Xdisplay, r->TermWin.vt,
- (ExposureMask | ButtonPressMask | ButtonReleaseMask
+ (KeyPressMask
+#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
+ | KeyReleaseMask
+#endif
+ | ExposureMask | ButtonPressMask | ButtonReleaseMask
| PropertyChangeMask
| Button1MotionMask | Button3MotionMask));
@@ -1188,7 +1192,11 @@
#endif
XDefineCursor(r->Xdisplay, r->menuBar.win, r->h->cursor_leftptr);
XSelectInput(r->Xdisplay, r->menuBar.win,
- (ExposureMask | ButtonPressMask | ButtonReleaseMask
+ (KeyPressMask
+#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
+ | KeyReleaseMask
+#endif
+ | ExposureMask | ButtonPressMask | ButtonReleaseMask
| Button1MotionMask));
}
#endif
diff -ur rxvt-2.7.10-old/src/scrollbar.c rxvt-2.7.10/src/scrollbar.c
--- rxvt-2.7.10-old/src/scrollbar.c Mon Apr 15 20:44:58 2002
+++ rxvt-2.7.10/src/scrollbar.c Sat May 15 16:48:06 2004
@@ -109,7 +109,11 @@
#endif
XDefineCursor(r->Xdisplay, r->scrollBar.win, r->h->cursor_leftptr);
XSelectInput(r->Xdisplay, r->scrollBar.win,
- (ExposureMask | ButtonPressMask | ButtonReleaseMask
+ (KeyPressMask
+#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
+ | KeyReleaseMask
+#endif
+ | ExposureMask | ButtonPressMask | ButtonReleaseMask
| Button1MotionMask | Button2MotionMask
| Button3MotionMask));
delayed_init = 1;
=============================================
And I just find out if i do a command "cat /etc/localtime" ( Mountain Time
America/Edmonton) and then start the wine then the problem fixed. I had no idea
how and why but it work.
Hope this can help to fix 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=2580
thomas.scholten(a)unbescholten.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P2 |P1
Summary|programs/winecfg from CVS is|programs/winecfg from CVS is
|missing mntent.h |missing mntent.h / no
| |compile on FBSD53
------- Additional Comments From thomas.scholten(a)unbescholten.de 2004-24-11 09:30 -------
Tested today on my 2nd macine, same error
--
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=2579
lordpopcorn(a)poczta.onet.pl changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From lordpopcorn(a)poczta.onet.pl 2004-24-11 03:21 -------
Fixed, a buggy kernel sound driver was the reason for me. I've built ALSA with
OSS emulation and left wineoss.drv as the sound driver in ~/.wine/config. Works
cool for me.
--
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=2580
Summary: programs/winecfg from CVS is missing mntent.h
Product: Wine
Version: CVS
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas.scholten(a)unbescholten.de
On my System FreeBSD 5.3-RELEASE-p1 the wine-source from CVS (23.11.04) doesn't
compile after ./configure and make && make depend with the following error:
gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o drivedetect.o drivedetect.c
drivedetect.c:28:20: mntent.h: No such file or directory
drivedetect.c: In function `autodetect_drives':
drivedetect.c:206: warning: implicit declaration of function `getmntent'
drivedetect.c:206: warning: assignment makes pointer from integer without a cast
drivedetect.c:212: error: dereferencing pointer to incomplete type
drivedetect.c:214: error: dereferencing pointer to incomplete type
drivedetect.c:215: error: dereferencing pointer to incomplete type
drivedetect.c:226: error: dereferencing pointer to incomplete type
drivedetect.c:226: error: dereferencing pointer to incomplete type
drivedetect.c:231: error: dereferencing pointer to incomplete type
drivedetect.c:232: error: dereferencing pointer to incomplete type
drivedetect.c:233: error: dereferencing pointer to incomplete type
drivedetect.c:234: error: dereferencing pointer to incomplete type
drivedetect.c:235: error: dereferencing pointer to incomplete type
drivedetect.c:236: error: dereferencing pointer to incomplete type
drivedetect.c:237: error: dereferencing pointer to incomplete type
drivedetect.c:240: error: dereferencing pointer to incomplete type
*** Error code 1
Stop in /usr/home/tom/cvs.wine/wine/programs/winecfg.
*** Error code 1
--
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=2579
------- Additional Comments From lordpopcorn(a)poczta.onet.pl 2004-23-11 01:03 -------
Whoops, looks like I've got a similar problem using Wine-20031212. Houston,
we've got a problem. Any ideas?
--
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=2579
------- Additional Comments From lordpopcorn(a)poczta.onet.pl 2004-22-11 17:58 -------
I see this bug is similar to #2576, however I'm not able to run _any_
application correctly. Some more info: I don't have any Windows partition, I
install Wine using the `./tools/wineinstall' command. Here is what I made out
further...
I actually _can_ run the applications shipped with the Wine source distribution
- notepad, regedit etc. They work fine. However, when I exit them, I get swamped
with the following messages:
----------
wine: Unhandled exception (thread 0009), starting debugger...
(the above appears only once)
err:syslevel:_EnterSysLevel (0x408c1480, level 2): Holding 0x40949520, level 3.
Expect deadlock!
(this one appears a few thousand times, at least)
----------
When I run any external Windows binary (say, a WinRAR self-extracting archive),
`strace any.exe' gives:
----------
[...]
rt_sigprocmask(SIG_SETMASK, [RTMIN], NULL, 8) = 0
close(9) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [RTMIN], 8) = 0
stat64("/home/kempniu/.wine/dosdevices/f:/KERNEL32.DLL", 0x4067fbc0) = -1 ENOENT
(No such file or directory)
stat64("/home/kempniu/.wine/dosdevices/f:/KERNEL32.DLL", 0x4067f900) = -1 ENOENT
(No such file or directory)
open("/home/kempniu/.wine/dosdevices/f:", O_RDONLY|O_LARGEFILE|O_DIRECTORY) = 9
ioctl(9, TUNIOCGETINFO or VFAT_IOCTL_READDIR_BOTH, 0x4067f6e0) = -1 ENOTTY (Inap
propriate ioctl for device)
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
(etc. - hangs forever)
----------
For your information, running notepad or regedit _also_ gives me a segfault, but
only once. Running any external application results in a hangup.
--
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=2572
nacho(a)merkapc.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From nacho(a)merkapc.com 2004-22-11 11:13 -------
Solved via RealChildWindowFromPoint patch released 31 october 2004. Now, RPGMakerXP
won't run, but doesn't say anything
--
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=2579
Summary: Wine hangs up the whole system on startup
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lordpopcorn(a)poczta.onet.pl
I'm trying to get Wine-20041019 running on a Toshiba Satellite Pro 4270 notebook
(hardware/software specification can be found below). Both when using the
precompiled binaries and compiling Wine from scratch, when I run the `wine'
binary for the first time, it prints out the information about creating font
indexes and when it gets to 100%, my system is pretty much dead. It's totally
unresponding, the cursor isn't moving, the keyboard isn't reacting and the only
solution is to press the POWER button. I would have sent some output but
actually I don't get any! Don't know what to do, even which direction to go...
And I'm quite fed up with losing 5 minutes each time fsck is run...
Some info about the environment: Celeron 500, 320 MB RAM, Savage IX (8 MB VRAM),
Yamaha sound card, 40 GB Samsung HDD. Slackware 10.0 with a 2.4.27 kernel (my
very own build, _without_ any VFAT or MSDOS support - perhaps this is the issue?).
--
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=2578
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-22-11 01:10 -------
Patches submitted here tend to bit rot. I would sugget that you submit it to
wine-devel(a)winehq.org for discussion.
--
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=2578
------- Additional Comments From greg(a)electricrain.com 2004-21-11 20:14 -------
Created an attachment (id=715)
--> (http://bugs.winehq.org/attachment.cgi?id=715&action=view)
proposed patch
This patch works great for me. However it may not be perfect in the face of
async io:
I notice that in ntdlls/file.c it stores the file handle from the
handle_to_fd() call in an allocated ovp structure that is passed to
register_new_async(). In that situation a dup() or a new open()+seek() should
probably be done first along with making sure whatever async code uses the fd
cleans it up later when appropriate.
--
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.