http://bugs.winehq.org/show_bug.cgi?id=5315
Summary: Unhandled page fault while launching French dictionary
Product: Wine
Version: 0.9.13.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lietuvis(a)gmail.com
I use a French monolingual dictionary "Le Petit Robert".
It works with older versions of wine such as the one that comes with Ubuntu
Breezy but it doesn't work with the latest wine versions. The tray icon of the
application appears and I can see a splash screen for a second but then, the
application just crashes and quits while its tray icon is still on the screen.
I get this output having launched the command:
http://pastebin.com/745040
The command that I use for application to launch is:
wine .wine/drive_c/Program\ Files/Le\ Robert/Le\ Petit\ Robert/pr1.exe
Wine: Wine 0.9.13 from the official Wine repositories for Ubuntu users.
OS: Ubuntu Dapper Drake (with all the latest upgrades).
Thank you.
--
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=5302
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-29-05 10:00 -------
Hi, i'm just trying to track down the patch that broke this app. About your
question:here's patch from marcus meissner:
--- dlls/kernel/time.c 17 Oct 2005 09:23:22 -0000 1.55
+++ dlls/kernel/time.c 30 Oct 2005 16:59:15 -0000
@@ -516,6 +516,9 @@
* 2) Time is relative. There is no 'starting date', so there is
* no need for offset correction, like in UnixTimeToFileTime
*/
+#ifndef CLK_TCK
+# define CLK_TCK CLOCKS_PER_SEC
+#endif
static void TIME_ClockTimeToFileTime(clock_t unix_time, LPFILETIME filetime)
{
ULONGLONG secs = RtlEnlargedUnsignedMultiply( unix_time, 10000000 );
that should you get compiled older wine-versions as well.
--
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=5121
fasici(a)linux-sevenler.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|QClxListview font problem |Can't display fonts in
| |listboxes
------- Additional Comments From fasici(a)linux-sevenler.org 2006-29-05 09:57 -------
When I make the following modification, it correctly works with all windows
version. The problem occurs when flags variable is 4.
--- a/dlls/gdi/font.c
+++ b/dlls/gdi/font.c
@@ -1653,6 +1653,7 @@ BOOL WINAPI ExtTextOutA( HDC hdc, INT x,
BOOL ret;
LPINT lpDxW = NULL;
+ flags = 0;
if (flags & ETO_GLYPH_INDEX)
return ExtTextOutW( hdc, x, y, flags, lprect, (LPCWSTR)str, count,
lpDx );
--
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=5305
pgr(a)arcelectronicsinc.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From pgr(a)arcelectronicsinc.com 2006-29-05 09:46 -------
Quick fix patch by AJ take care of 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=5302
------- Additional Comments From roy_brunjes(a)yahoo.com 2006-29-05 09:24 -------
Based on suggestion that older releases (such as Wine-20050830) do not show the
bug, I tried to install Wine-20050830 and get this during the make:
I found wine-20050830. However the make fails. I have no ability to debug that.
I will have to wait till a fix arrives via yum.
Here is the last bit of the make output:
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_KERNEL32_
-DETCDIR="\"/usr/local/etc\"" -D_REENTRANT -fPIC -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o thunk.o thunk.c
gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__ -D_KERNEL32_
-DETCDIR="\"/usr/local/etc\"" -D_REENTRANT -fPIC -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o time.o time.c
time.c: In function ‘TIME_ClockTimeToFileTime’:
time.c:522: error: ‘CLK_TCK’ undeclared (first use in this function)
time.c:522: error: (Each undeclared identifier is reported only once
time.c:522: error: for each function it appears in.)
make[2]: *** [time.o] Error 1
make[2]: Leaving directory `/usr/local/src/wine/wine-20050830/dlls/kernel'
make[1]: *** [kernel] Error 2
make[1]: Leaving directory `/usr/local/src/wine/wine-20050830/dlls'
make: *** [dlls] Error 2
I also uninstalled wine-0.9.13 and installed wine-0.9.10 and can confirm that
the bug is in 0.9.10 as well as 0.9.13.
--
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=1293
------- Additional Comments From hans(a)it.vu.nl 2006-29-05 03:16 -------
Created an attachment (id=2552)
--> (http://bugs.winehq.org/attachment.cgi?id=2552&action=view)
Stub implementation for inseng.dll
Here's patch that adds a stubbed inseng.dll. I took a patch
by Lionel Ulmer and Mike McCormack posted a couple of years
ago and updated it to the current COM state of affairs. Should
be easy to add a DllRegisterServer implementation.
--
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=640
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From truiken(a)gmail.com 2006-29-05 02:25 -------
Works for me. From previous comments, it seems like a bug in specific X servers.
--
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.