http://bugs.winehq.org/show_bug.cgi?id=2701
Summary: Afterlife game doesn't get keyboard input
Product: Wine
Version: 20040914
Platform: Other
URL: http://appdb.winehq.org/appview.php?appId=1722
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robin-wine(a)kallisti.net.nz
When doing things such as typing save-game names, the characters go straight
to whatever it behind the Afterlife game screen (which is full screen) making
it impossible to use the keyboard.
--
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=2700
Summary: Screen corruption in Afterlife
Product: Wine
Version: 20040914
Platform: Other
URL: http://appdb.winehq.org/appview.php?appId=1722
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: robin-wine(a)kallisti.net.nz
In afterlife, when you scroll the screen around, any part of the screen that
would have been moved rather than drawn doesn't move, leading to a somewhat
messed up display.
In case it's relevant, this message appears on the console while playing:
fixme:bitblt:X11DRV_BitBlt potential optimization - client-side DIB copy
--
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=2699
jberkes(a)pc-tools.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|richedit control with |richedit unusable when
|ES_DISABLENOSCROLL aka |ES_DISABLENOSCROLL aka
|ES_NUMBER accepts no input |ES_NUMBER style used
--
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=2699
Summary: richedit control with ES_DISABLENOSCROLL aka ES_NUMBER
accepts no input
Product: Wine
Version: 20050111
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jberkes(a)pc-tools.net
Fully reproducible. A richedit control with the style ES_DISABLENOSCROLL (same
#define value as ES_NUMBER) accepts no keyboard input at all. This alone may
account for a large number of richedit-based applications that just won't work
under Wine.
I have determined that toggling this single style flag makes a richedit control
unusable. I compiled two bare bone applications with MSVC++. The only difference
between the applications was the ES_NUMBER style for the richedit resource (same
value as ES_DISABLENOSCROLL in order to disable scroll bars instead of hiding them).
Under Wine 20050111 (running on Slackware 10/GNOME) the test application with
richedit style ES_DISABLENOSCROLL did not accept any input, while the other test
application without this flag functioned normally.
--
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=2673
------- Additional Comments From titan.costa(a)wanadoo.fr 2005-04-02 16:44 -------
The only significant change between wine-20041019 and wine-20041201 is as follows:
diff -u wine-20041019/dlls/ddraw/mesa.c wine-20041201/dlls/ddraw/mesa.c
--- wine-20041019/dlls/ddraw/mesa.c 2004-09-08 02:37:25.000000000 +0100
+++ wine-20041201/dlls/ddraw/mesa.c 2004-11-19 18:05:15.000000000 +0000
@@ -1205,7 +1205,7 @@
for (x = 0; x < width; x++) {
DWORD color = *((DWORD *) src) & 0x00FFFFFF;
src += 3;
- *dst = *src++ << 8;
+ *dst = color << 8;
if ((color < src_d->ddckCKSrcBlt.dwColorSpaceLowValue) ||
(color > src_d->ddckCKSrcBlt.dwColorSpaceHighValue))
*dst |= 0xFF;
You may try to revert it and see if something changes.
--
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=2695
gabriele.giorgetti(a)teamfab.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 10:05 -------
Here is the offending DIFF:
diff -urN wine-20040916/dlls/user/edit.c wine-20040917/dlls/user/edit.c
--- wine-20040916/dlls/user/edit.c Fri Feb 4 11:21:16 2005
+++ wine-20040917/dlls/user/edit.c Fri Feb 4 14:41:11 2005
@@ -4423,13 +4423,18 @@
/*
* In Win95 look and feel, the WS_BORDER style is replaced by the
* WS_EX_CLIENTEDGE style for the edit control. This gives the edit
- * control a non client area. Not always. This coordinates in some
- * way with the window creation code in dialog.c When making
- * modifications please ensure that the code still works for edit
- * controls created directly with style 0x50800000, exStyle 0 (
- * which should have a single pixel border)
+ * control a nonclient area so we don't need to draw the border.
+ * If WS_BORDER without WS_EX_CLIENTEDGE is specified we shouldn't have
+ * a nonclient area and we should handle painting the border ourselves.
+ *
+ * When making modifications please ensure that the code still works
+ * for edit controls created directly with style 0x50800000, exStyle 0
+ * (which should have a single pixel border)
*/
- es->style &= ~WS_BORDER;
+ if (lpcs->dwExStyle & WS_EX_CLIENTEDGE)
+ es->style &= ~WS_BORDER;
+ else if (es->style & WS_BORDER)
+ SetWindowLongW(hwnd, GWL_STYLE, es->style & ~WS_BORDER);
return TRUE;
}
A patch which reverts this change is attacched
--
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=2698
gabriele.giorgetti(a)teamfab.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
--
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=50
gabriele.giorgetti(a)teamfab.it changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |gabriele.giorgetti(a)teamfab.i
| |t
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 05:28 -------
*** Bug 2698 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=2698
gabriele.giorgetti(a)teamfab.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 05:28 -------
*** This bug has been marked as a duplicate of 50 ***
--
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=2698
Summary: Text alignment bug in editbox
Product: Wine
Version: 20050111
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabriele.giorgetti(a)teamfab.it
It looks like there is a problem with the text alignment in edit boxes.
A simple C program (with sources) that shows the wrong behaviour is attached.
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=50
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 05:20 -------
Here is a simple program written in C that you can use as testbed.
Just run it in Windows and the with Wine.
--
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=50
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-04-02 05:13 -------
The problem is still there.
EG: run calc.exe in Windows and pay attention at where the digits are shown.
Now run calc.exe with Wine and see the digits in the opposite side.
--
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=2611
------- Additional Comments From pbaylies(a)gmail.com 2005-04-02 02:13 -------
I get this bug as well, in Baldur's Gate II, in wine snapshot 20050111 as well
as a more recent copy of the CVS tree. Something to do with the dsound
implementation and threading, I would guess.
gcc 3.3.5
Linux Gentoo 2.4.25-gentoo-r2
fixme:mmtime:timeEndPeriod Stub; we set our timer resolution at minimum
fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel level=DSSCL_PRIORITY not
fully supported
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel level=DSSCL_EXCLUSIVE not
fully supported
err:dsound:DSOUND_MixOne underrun on sound buffer 0x5d827788
err:ntdll:RtlpWaitForCriticalSection section 0x5d7d03fc "DSOUND_mixlock" wait
timed out in thread 0012, blocked by 000c, retrying (60 sec)
--
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=2456
webkid(a)webkid.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |webkid(a)webkid.com
------- Additional Comments From webkid(a)webkid.com 2005-03-02 19:28 -------
Similar bug while trying to install Office 97...
err:seh:setup_exemption stack overflow 4 bytes in thread 000c eip b7e64b86 esp
779d0ffc stack 0x779d0000-0x77ad0000
Wine 20050111
I have a my wine config + an strace ala
strace -ff -F wine setup.exe
available if wanted. Adding myself to CC list. Reopen?
--
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=2697
Summary: Wine does not support ARGB or 32-bit color
Product: Wine
Version: 20050111
Platform: PC
URL: http://www.daz3d.com/studio
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tygris(a)cablespeed.com
Daz|Studio, which in 0.9.14.x and below, allowed use of 24-bit color. However,
it now (in 0.9.15.x) requires "32-bit" or alpha-blended color, preventing me
from using this app.
I'm using Xorg 6.8.0 w/Composite turned on, on a Gentoo system recently updated
(and portage set to pull the latest Wine release no questions asked).
--
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=2696
------- Additional Comments From jwagner(a)hankgraff.com 2005-03-02 12:59 -------
Nevermind about providing an e-mail address to send the screenshots to - this is
the first time I've used the bugzilla system. (It really is quite sweet and
provides great functionality.) I've attached two such screenshots to this bug
as examples.
--
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=2696
Summary: No Text Displayed in WINE
Product: Wine
Version: 20050111
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jwagner(a)hankgraff.com
I have installed version 20050111 and 20041201 from source, compiling for my
RedHat 7.3 system. (The RPM didn't work.) I used SideNet to set up the WINE
configuration. Everything seems to be fine, except that whereever there should
be text within WINE, whether in an application or in the file browser, there is
nothing. There is no text in labels, radio buttons, text boxes, on command
buttons - nowhere. I can provide screenshots of the phenomenon if needed - just
provide me an e-mail address to send them to. Likewise with any additional
information or supporting documentation. I'm guessing that a file in ~/.fonts
is missing - a list of the files in this directory is below.
Needless to say, this basically prevents me from using WINE. I'm greatly
anticipating doing so.
Index of ~/.fonts:
wine_courier.ttf
wine_marlett.ttf
wine_sans_serif.ttf
wine_system.ttf
--
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=2695
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |regression
--
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=2695
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-binary |wine-gui
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-03-02 12:49 -------
Is it possible for you to proved the source code that demonstrates this?
--
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=2695
------- Additional Comments From gabriele.giorgetti(a)teamfab.it 2005-03-02 11:03 -------
Oh and wine version 20041019 does not work !!
so wine-20040914 is the last working version.
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=2695
Summary: REGRESSION: edit box background is not drawn carrectly
Product: Wine
Version: 20050111
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: gabriele.giorgetti(a)teamfab.it
Hi since the wine release 20040914 the editbox (textbox) background color is not
set correctly. As you can clearly see in the screenshots, Wine does not draw the
edit box backround color for the whole editbox field. It sets the background
color only where text is present.
The Wine release 20040813 works as well.
works.png is a screenshot using Wine 20040914
notworks.png s a screenshot using Wine 20050111
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=2673
agri(a)desnol.ru changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |agri(a)desnol.ru
------- Additional Comments From agri(a)desnol.ru 2005-03-02 02:19 -------
*** Bug 2688 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=2688
agri(a)desnol.ru changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From agri(a)desnol.ru 2005-03-02 02:19 -------
*** This bug has been marked as a duplicate of 2673 ***
--
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=2693
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-03-02 00:03 -------
This is fixed in CVS
http://www.winehq.org/hypermail/wine-cvs/2005/01/0636.html
--
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=2691
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=1794
--
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=2689
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=529
--
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=2688
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=1229
--
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=2685
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
--
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=2694
Summary: Wine crashes in startup, complaining about missing
symbol EnumCalendarInfo
Product: Wine
Version: 20050111
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: diego_floreso(a)yahoo.com.ar
Wine, version 20050111
Updating from: Wine-20050111.diff.gz
First of all, when executing make:
cpp0: In file included from headers.c:35:
../../../include/msvcrt/crtdbg.h:73:48: warning: invalid character in macro
parameter name
../../../include/msvcrt/crtdbg.h:73:48: badly punctuated parameter list in
`#define'
In the file:
(top)/include/msvcrt/crtdgb.h
Line 73, where it says:
#define _CrtDbgReport(...) ((int)0)
It should say:
#define _CrtDbgReport() ( (int) 0)
with that, the test compiles and everyting follows its course.
---------->> When executing wine, even to get the help or version number:
err:module:load_builtin_dll failed to load .so lib for builtin L"kernel32.dll":
/usr/local/lib/wine/kernel32.dll.so: undefined symbol: EnumCalendarInfoA
wine: could not load kernel32.dll, status c000007a
Then, as superuser, as I forgot to make .wine:
wine: creating configuration directory '/root/.wine'...
err:module:load_builtin_dll failed to load .so lib for builtin L"kernel32.dll":
/usr/local/lib/wine/kernel32.dll.so: undefined symbol: EnumCalendarInfoA
wine: could not load kernel32.dll, status c000007a
wine: wineprefixcreate failed while creating '/root/.wine'.
But it's the same thing.
Include in the attachment my config file and extra info on my system, as
well as the share object that is defective.
--
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=2693
Summary: TZ_INFO needs EST added to time.c
Product: Wine
Version: unspecified
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: penseleit(a)linuxmail.org
EST is Australian "Eastern Standard Time" Time Zone
I don't know how to do this, can this be added to time.c please.
I am trying to run TOWER Software's TRIM Context product on Novell Desktop 9 and
an exe will not run because it is looking for EST in TZ_INFO according to wine
debug window:
fixme:ntdll:TIME_GetTZAsStr Can't match system time zone name "EST" to an entry
in TZ_INFO
fixme:ntdll:TIME_GetTZAsStr Please add appropriate entry to TZ_INFO and submit
as patch to wine-patches
fixme:ntdll:TIME_GetTZAsStr Can't match system time zone name "EST" to an entry
in TZ_INFO
fixme:ntdll:TIME_GetTZAsStr Please add appropriate entry to TZ_INFO and submit
as patch to wine-patches
fixme:advapi:RegisterEventSourceW (L"",L"TRIMWorkgroup"): stub
fixme:ntdll:TIME_GetTZAsStr Can't match system time zone name "EST" to an entry
in TZ_INFO
fixme:ntdll:TIME_GetTZAsStr Please add appropriate entry to TZ_INFO and submit
as patch to wine-patches
fixme:advapi:DeregisterEventSource (0x1): stub
many thanks
Pepe
--
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=2688
------- Additional Comments From lionel.ulmer(a)free.fr 2005-02-02 14:42 -------
I think that bug '2673' is reporting the same problem. For the moment, I doubt
that with only a log it will be possible to find out what causes 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=2505
arnvid(a)isd.no changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20040408 |20050111
------- Additional Comments From arnvid(a)isd.no 2005-02-02 10:27 -------
Updated to 20050111 and same 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=1142
------- Additional Comments From wine(a)deesconsulting.com 2005-02-02 09:38 -------
This bug has been fixed as of Crossover Office 4.1. I believe the proper fix
was implemented in other versions of Wine shortly after this bug was originally
filed, and I believe them not to have been affected since.
According to Codeweavers, the persistence of this bug in their version was
caused by a mistake in their build process. I believe the cause was compiling
on a system too old to properly support Wine file locking.
--
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=2505
------- Additional Comments From arnvid(a)isd.no 2005-02-02 07:40 -------
Added a AppDB entry for this application.
It's the tree view on the left side of the screen that don't work. It's either a
TreeView or ListView component.
--
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=2691
Summary: Adobe Photoshop Elements Crash
Product: Wine
Version: 20050111
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bob(a)coldsource.net
When booting Adobe Photoshop Elements, the tool window containing copies does is
not properly sized. At the bottom right corner, the edged corner is nor shown.
Trying to resize the window will crash wine.
To avoid this, i have to click another tab in this window, which causes the
window to redimension to a bigger size. It makes the corder appear correctly and
i can then resize the window to the desired size.
--
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=2630
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-01-02 20:37 -------
I deleted both links as they are no longer valid.
Thanks for reporting.
=>FIXED
--
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=1705
------- Additional Comments From jonathan(a)ernstfamily.ch 2005-01-02 20:36 -------
I removed the sentence that was saying someone will put a pdf as nobody did it
and it makes many months already.
I'd make this bug WONTFIX and if ever someone publishes this pdf, then that'll
be nice btw.
--
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=2689
Summary: Clicking Open in Sound Forge 4.5 Open file dialog does
nothing
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vesuri(a)jormas.com
To reproduce:
1. Install a version of Sound Forge (4.5 or newer)
2. Select File->Open
3. Select a valid WAV file
4. Click Open
5. Nothing happens - the Open dialog should close and the file should be opened
Sound Forge has a custom Open file dialog that includes information about the
selected file in addition to the default controls.
I debugged this problem and found out that this happens because
FILEDLG95_OnOpen() calls FILEDLG95_SendFileOK() which in turn sends a
notification message to the application by calling
SendCustomDlgNotificationMessage(hwnd,CDN_FILEOK). For some reason Sound Forge
does not like the information entered into the Open file dialog so
GetWindowLongW(fodInfos->DlgInfos.hwndCustomDlg, DWL_MSGRESULT) gets a non-zero
return value causing FILEDLG95_SendFileOK() to cancel the operation by returning
FALSE. If I remove the FILEDLG95_SendFileOK() call completely from
FILEDLG95_OnOpen() Sound Forge will open the file just fine.
--
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=2688
Summary: red and blue color exchange
Product: Wine
Version: 20050111
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: agri(a)desnol.ru
i686-pc-linux-gnu
XFree86 Version 4.3.0.1
GL driver nvidia 1.0.6629
video hardware GeForce2 MX/MX 400
try to play Heroes of Might and Magic IV - red and blue color components
exchange on the map screen, colors are correct withing cursor bound rect and on
edges while scrolling,
all other game screens are correct.
--
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=2687
Summary: No docs on clipboard config
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-documentation
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jlquinn(a)us.ibm.com
At the moment I haven't been able to find docs on the parameters that go under
the [clipboard] section on the config. Since cut and past into notes doesn't
work out of the box without tweaking these settings, it would be nice to know
exactly what they do :-)
--
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=2686
Summary: LocalSize()/GlobalSize() return wrong size!
Product: Wine
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: w3seek(a)reactos.com
LocalSize()/GlobalSize() return the wrong number of allocate bytes. They should
return the exact same number as allocated, not round up. To reproduce run the
reactos' version of regedit and edit a dword value, it should only display 4
bytes as can be seen in windows. in ReactOS/wine it however displays too many
byte (because of the wrong reported allocated size.
--
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=2685
Summary: trying to run win2k terminal server under wine
Product: Wine
Version: 20050111
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lundby(a)ameritech.net
I copied in to the system directory all the dlls and stuff it was yelling about
then eventually got thrown into debug. (I wanted to see if I could run Win2k
Termnial Services under Linux)
wine termsrv.exe
Loading required GL library /usr/X11R6/lib/libGL.so.1.4.502
fixme:ntdll:NtSetInformationProcess
(0xffffffff,0x00000005,0x406afedc,0x00000004) stub
fixme:advapi:start_new_service should fail with
ERROR_FAILED_SERVICE_CONTROLLER_CONNECT
fixme:ver:RtlVerifyVersionInfo (0x406af8f0,64,180000): Not all cases correctly
implemented yet
wine: Unhandled exception (thread 0021), starting debugger...
WineDbg starting on pid 0x20
Unhandled exception: page fault on read access to 0x00000318 in 32-bit code
(0x406e41d4).
In 32 bit mode.
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:406e41d4 ESP:406af9d8 EBP:406afa30 EFLAGS:00210246( - 00 -RIZP1)
EAX:00000000 EBX:406f11f0 ECX:c0000059 EDX:00000010
ESI:01022b20 EDI:406f10cc
Stack dump:
0x406af9d8: 00000000 00000000 00000000 00000000
0x406af9e8: 00000000 00000001 00000000 403838c0
0x406af9f8: 010048a1 00000000 01022b20 01004824
0x406afa08: 00000001 00000000 00000004 403838c0
0x406afa18: 0101f048 406f11f0 406f10cc 406eca14
0x406afa28: 406ecea0 406afa48 406afee0 406e38c1
Backtrace:
=>1 0x406e41d4 SetServiceStatus+0x64 in advapi32 (0x406afa30)
2 0x406e38c1 start_new_service+0x3a1 in advapi32 (0x406afee0)
3 0x01014f53err:dbghelp:pe_load_dbg_file -Unable to peruse .DBG file
exe\termsrv.dbg ("C:\\windows")
EntryPoint+0xd3 in termsrv (0x406aff20)
4 0x404d41a6 start_process+0xf6 in kernel32 (0x00000000)
0x406e41d4 SetServiceStatus+0x64 in advapi32: movl 0x318(%eax),%eax
Wine-dbg>
Config file is:
WINE REGISTRY Version 2
;; Powered by Sidenet
;; http://sidenet.ddo.jp/winetips/
;; Version 1.8.1
;; All keys relative to \\Machine\\Software\\Wine\\Wine\\Config
;; If you think it is necessary to show others your complete config for a
;; bug report, filter out empty lines and comments with
;; grep -v "^;" ~/.wine/config | grep '.'
[wine]
"GraphicsDriver" = "x11drv"; (x11drv, ttydrv)
;"ShowDotFiles" = "1"
# [wineconf]
[Version]
; Windows version to imitate
(win95,win98,winme,nt351,nt40,win2k,winxp,win2k3,win20,win30,win31)
; Set version to win98 is recommended.
"Windows" = "win2k"
; DOS version to imitate
; Only effect when "Windows" = "win31"
;"DOS" = "6.22"
; Be careful here, wrong DllOverrides settings have the potential
; to pretty much kill your setup.
[DllOverrides]
; Some native dlls won't work, so leave these builtin.
; Do not modify these lines.
"advapi32" = "builtin";Native version won't work
"avicap32" = "builtin";Hardware related
"capi2032" = "builtin";Completely implemented
"comctl32" = "builtin";Native version cause bugs.
"comdlg32" = "builtin";thunk
"crtdll" = "builtin";Completely implemented
"ctl3d32" = "builtin";thunk
"d3d8" = "builtin";Hardware related
"d3d9" = "builtin";Hardware related
"dbghelp" = "builtin";Native version won't work
"ddeml" = "builtin";
"ddraw" = "builtin";Hardware related
"ddrawex" = "builtin";Hardware related
"dinput" = "builtin";
"dinput8" = "builtin";Hardware related
"dispdib" = "builtin";Completely implemented
"display.drv" = "builtin";Hardware related
"dmusic32" = "builtin";thunk
"dplay" = "builtin";
"dplayx" = "builtin";
"dpnet" = "builtin";
"dsound" = "builtin";Hardware related
"dswave" = "builtin";Hardware related
"dxdiagn" = "builtin";
"gdi.exe" = "builtin";Hardware related
"gdi32" = "builtin";Hardware related
"glu32" = "builtin";Hardware related
"gult32" = "builtin";Hardware related
"icmp" = "builtin";Hardware related
"icwconn1.exe" = "builtin";Prevent from loading Connection Wizard
"ifsmgr.vxd" = "builtin";Completely implemented
"imaadp32.acm" = "builtin";Completely implemented
"imm" = "builtin";Special hack needed
"imm32" = "builtin";Special hack needed
"iphlpapi" = "builtin";Hardware related
"joystick.drv" = "builtin";Hardware related
"kernel32" = "builtin";Hardware related
"keyboard.drv" = "builtin";Hardware related
"krnl386.exe" = "builtin";Hardware related
"lz32" = "builtin";Completely implemented
"lzexpand" = "builtin";Completely implemented
"mcianim.drv" = "builtin";Completely implemented
"mciavi.drv" = "builtin";Completely implemented
"mcicda.drv" = "builtin";Completely implemented
"mciseq.drv" = "builtin";Completely implemented
"mciwave.drv" = "builtin";Completely implemented
"midimap.drv" = "builtin";Completely implemented
"mmsystem" = "builtin";Hardware related
"mouse.drv" = "builtin";Hardware related
"mpr" = "builtin";thunk
"msacm.drv" = "builtin";Completely implemented
"msacm32" = "builtin";thunk
"msadp32.acm" = "builtin";Completely implemented
"msvfw32" = "builtin";Hardware related
"msvidc32" = "builtin";Completely implemented
"mswsock" = "builtin";Hardware related
"newdev" = "builtin";Hardware related
"ntdll" = "builtin";Hardware related
"opengl32" = "builtin";Hardware related
"psapi" = "builtin";Hardware related
"rasapi16" = "builtin";Hardware related
"rasapi32" = "builtin";Hardware related
"serialui" = "builtin";Hardware related
"setupapi" = "builtin";thunk
"shell" = "builtin";Special hack needed
"shell32" = "builtin";Special hack needed
"snmpapi" = "builtin";Hardware related
"sound" = "builtin";Hardware related
"sti" = "builtin";Hardware related
"system.drv" = "builtin";Hardware related
"tapi32" = "builtin";Hardware related
"toolhelp" = "builtin";Hardware related
"twain" = "builtin";Hardware related
"twain_32" = "builtin";Hardware related
"user.exe" = "builtin";Hardware related
"user32" = "builtin";Hardware related
"ver" = "builtin";Special hack needed
"version" = "builtin";Special hack needed
"vnbt.vxd" = "builtin";
"vtdapi.vxd" = "builtin";
"vwin32.vxd" = "builtin";Hardware related
"w32skrnl" = "builtin";Hardware related
"w32sys" = "builtin";Hardware related
"win32s16" = "builtin";Hardware related
"win87em" = "builtin";Hardware related
"winaspi" = "builtin";Hardware related
"wing" = "builtin";Hardware related
"winmm" = "builtin";Hardware related
"winnls32" = "builtin";thunk
"winsock" = "builtin";Hardware related
"wintab" = "builtin";Hardware related
"wintab32" = "builtin";Hardware related
"wnaspi32" = "builtin";Hardware related
"wow32" = "builtin";
"wprocs" = "builtin";Hardware related
"ws2_32" = "builtin";Hardware related
"wsock32" = "builtin";Hardware related
; Windows ODBC
; If you'd like to use UNIX ODBC, remove this line.
"odbc32" = "native, builtin"
; Acrobat Reader 6 Plugin
; Currently, this plugin crashes IE6
;"acroiehelper" = "builtin"
; MLang
; Builtin mlang.dll can speed up Internet Explorer.
; May cause font corruptions on CJK systems.
;"mlang" = "builtin"
; you can specify applications too
; this one will apply for all notepad.exe
;"*notepad.exe" = "native, builtin"
; this one will apply only for a particular file
;"C:\\windows\\regedit.exe" = "native, builtin"
; default for all other dlls and executables
"*" = "native, builtin"
[x11drv]
; Number of colors to allocate from the system palette
"AllocSystemColors" = "100"
; Use a private color map
"PrivateColorMap" = "N"
; Favor correctness over speed in some graphics operations
"PerfectGraphics" = "N"
; Color depth to use on multi-depth screens
;;"ScreenDepth" = "16"
; Allow the window manager to manage created windows
"Managed" = "Y"
; Use a desktop window of 640x480 for Wine
;"Desktop" = "640x480"
; Use XFree86 DGA extension if present
; (make sure /dev/mem is accessible by you !)
"UseDGA" = "N"
; Use XVidMode extension if present
"UseXVidMode" = "Y"
; Use XRandR extension if present
"UseXRandR" = "N"
; Use the take focus protocol
"UseTakeFocus" = "Y"
; Enable DirectX mouse grab
"DXGrab" = "Y"
; Create the desktop window with a double-buffered visual
; (useful to play OpenGL games)
"DesktopDoubleBuffered" = "Y"
; Run in synchronous mode (useful for debugging X11 problems)
;;"Synchronous" = "Y"
;
; Use the Render extension to render client side fonts (default "Y")
;;"ClientSideWithRender" = "Y"
; Fallback on X core requests to render client side fonts (default "Y")
;;"ClientSideWithCore" = "Y"
; Set both of the previous two to "N" in order to force X11 server side fonts
;
; Anti-alias fonts if using the Render extension (default "Y")
;;"ClientSideAntiAliasWithRender" = "N"
; Anti-alias fonts if using core requests fallback (default "Y")
;;"ClientSideAntiAliasWithCore" = "Y"
;
; Use the X Input Method (default "Y")
;;"UseXIM" = "Y"
; XIM Input Style (onthespot, offthespot, overthespot ,root)
;;"InputStyle" = "onthespot"
;
; Codepage for clipboard (0 for ANSI, 20932 for euc-jp)
"TextCP" = "0"
;[ppdev]
;; key: io-base of the emulated port
;; value : parport-device{,timeout}
;; timeout for auto closing an open device ( not yet implemented)
;"378" = "/dev/parport0"
;"278" = "/dev/parport1"
;"3bc" = "/dev/parport2"
;[spooler]
;;Wine detects CUPS configuration automaticly.
;"FILE:" = "tmp.ps"
;"LPT1:" = "|lpr"
;"LPT2:" = "|gs -sDEVICE=bj200 -sOutputFile=/tmp/fred -q -"
;"LPT3:" = "/dev/lp3"
;[ports]
;"read" = "0x779,0x379,0x280-0x2a0"
;"write" = "0x779,0x379,0x280-0x2a0"
;[Debug]
;"RelayExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
;"RelayInclude" = "user32.CreateWindowA"
;"RelayFromExclude" = "user32;x11drv"
;"RelayFromInclude" = "sol.exe"
;"SnoopExclude" = "RtlEnterCriticalSection;RtlLeaveCriticalSection"
;"SpyExclude" = "WM_SIZE;WM_TIMER;"
[registry]
;These are all booleans. Y/y/T/t/1 are true, N/n/F/f/0 are false.
;Defaults are read all, write to Home
; Where to find the global registries
;"GlobalRegistryDir" = "/etc";
; Global registries (stored in /etc)
"LoadGlobalRegistryFiles" = "Y"
; Load Windows registries from the Windows directory
"LoadWindowsRegistryFiles" = "Y"
; Registry periodic save timeout in seconds
; "PeriodicSave" = "600"
; Save only modified keys
"SaveOnlyUpdatedKeys" = "Y"
[Clipboard]
"ClearAllSelections" = "0"
"PersistentSelection" = "1"
"UsePrimary" = "0"
; List of all directories directly contain .AFM files
;[afmdirs]
;"1" = "/usr/share/ghostscript/fonts"
;"2" = "/usr/share/a2ps/afm"
;"3" = "/usr/share/enscript"
;"4" = "/usr/X11R6/lib/X11/fonts/Type1"
[WinMM]
; Uncomment the "Drivers" line matching your sound setting.
"Drivers" = "wineoss.drv" ; default for most common configurations
;"Drivers" = "winearts.drv" ; for KDE
;"Drivers" = "winealsa.drv" ; for ALSA users
;"Drivers" = "winejack.drv" ; for Jack sound server
;"Drivers" = "winenas.drv" ; for NAS sound system
;"Drivers" = "wineaudioio.drv" ; for Solaris machines
;"Drivers" = "" ; to disable sound
"WaveMapper" = "msacm.drv"
"MidiMapper" = "midimap.drv"
[dsound]
;; HEL only: Number of waveOut fragments ahead to mix in new buffers.
;"HELmargin" = "5"
;; HEL only: Number of waveOut fragments ahead to queue to driver.
;"HELqueue" = "5"
;; Max number of fragments to prebuffer
;"SndQueueMax" = "28"
;; Min number of fragments to prebuffer
;"SndQueueMin" = "12"
;; Forces emulation mode (using wave api)
;"HardwareAcceleration" = "Emulation"
;; Sets default playback device (0 - number of devices - 1)
;"DefaultPlayback" = "0" ; use first device (/dev/dsp)
;"DefaultPlayback" = "1" ; use second device (/dev/dsp1)
;"DefaultPlayback" = "2" ; use third device (/dev/dsp2)
;; Sets default capture device (0 - number of devices - 1)
;"DefaultCapture" = "0" ; use first device (/dev/dsp)
;"DefaultCapture" = "1" ; use second device (/dev/dsp1)
;"DefaultCapture" = "2" ; use third device (/dev/dsp2)
[Network]
;; Use the DNS (Unix) host name always as NetBIOS "ComputerName" (boolean,
default "Y").
;; Set to N if you need a persistent NetBIOS ComputerName that possibly differs
;; from the Unix host name. You'll need to set ComputerName in
;;
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\ComputerName\ComputerName, too.
;"UseDnsComputerName" = "N"
;; Application specific configuration
; 3 InstallShield versions who like to put their full screen window in front,
; without any chance to switch to another X11 application.
; So just catch them in a desktop window.
; Note: KDE handles this correctry.
;
;[AppDefaults\\_INS0432._MP\\x11drv]
;"Desktop" = "640x480"
;
;[AppDefaults\\_INS0466._MP\\x11drv]
;"Desktop" = "640x480"
;
;[AppDefaults\\_INS0576._MP\\x11drv]
;"Desktop" = "640x480"
;
;[AppDefaults\\_INS5176._MP\\x11drv]
;"Desktop" = "640x480"
;
;[AppDefaults\\_INS5576._MP\\x11drv]
;"Desktop" = "800x600"
;Disable window management for some apps.
;
;Densi denwachou 2003
[AppDefaults\\Blarea8.exe\\x11drv]
"Managed" = "N"
;
;Half Life Demo
[AppDefaults\\hldemo.exe\\x11drv]
"Managed" = "N"
;
;Real Player 10
[AppDefaults\\realplay.exe\\x11drv]
"Managed" = "N"
;
;Winamp
[AppDefaults\\winamp.exe\\x11drv]
"Managed" = "N"
;;Some apps work better with native comctl32
;;NOTE: May cause side effects
;
;;Winamp
;[AppDefaults\\winamp.exe\\DllOverrides]
;"comctl32" = "native"
;
;;WinnyP
;[AppDefaults\\winnyp.exe\\DllOverrides]
;"comctl32" = "native"
;
;;Lunascape
;[AppDefaults\\Luna.exe\\DllOverrides]
;"comctl32" = "native"
;
;;Mame file 2
;[AppDefaults\\mame2.exe\\DllOverrides]
;"comctl32" = "native"
;OpenJane_IE sppedup hack
[AppDefaults\\Jane2ch.exe\\DllOverrides]
"mlang" = "builtin, native"
;"comctl32" = "native"
;;Internet Explorer
;[AppDefaults\\iexplore.exe\\DllOverrides]
;"mlang" = "builtin, native"
;IE4,5,6 Installer
[AppDefaults\\acmsetup.exe\\DllOverrides]
"*comctl32" = "builtin"
[AppDefaults\\grpconv.exe\\DllOverrides]
"*comctl32" = "builtin"
[AppDefaults\\iebatch.exe\\DllOverrides]
"*comctl32" = "builtin"
[AppDefaults\\updcrl.exe\\DllOverrides]
"*comctl32" = "builtin"
;Adobe Reader 6.0
[AppDefaults\\AcroRd32.exe\\Version]
"Windows" = "win2k"
;;Windows Explorer
;[AppDefaults\\explorer.exe\\DllOverrides]
;"shell32" = "native"
;;Windows Media Player 9 Installer
;;WARNING: Windows Media Player 9 Installer may brake your setup!
;[AppDefaults\\setup_wm.exe\\Version]
;"Windows" = "winme"
;[AppDefaults\\setup_wm.exe\\DllOverrides]
;"msvcrt" = "builtin"
;;Example: Catch setup.exe in a desktop window.
;[AppDefaults\\setup.exe\\x11drv]
;"Desktop" = "800x600"
;;Example: Catch full screen games in a desktop window.
;;Half Life Demo
;[AppDefaults\\hldemo.exe\\x11drv]
;"Desktop" = "640x480"
;;Example: XIM Input Style
;[AppDefaults\\notepad.exe\\x11drv]
;"InputStyle" = "offthespot"
;;Example: Windows version
;[AppDefaults\\sol.exe\\Version]
;"Windows" = "nt40"
;; You can add an AppDefault entry like this for such cases.
;[AppDefaults\\pickygame.exe\\dsound]
;"EmulDriver" = "N"
# [/wineconf]
--
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=2659
------- Additional Comments From jlh(a)gmx.ch 2005-31-01 12:35 -------
I confirm the problem: Shareaza 2.1 (www.shareaza.com) doesn't work with
wine 20050111 anymore; it hangs at the splash screen displaying
"Starting GUI".
I did a binary search on the cvs as suggested above and isolated the
change that causes the problem. At 2005-01-10 15:25:30 GMT+1, the file
"dlls/comctl32/header.c" went from revision 1.68 to 1.69 and introduced
the problem. (Other files got modified in the minutes before and after,
but it's this one that introduces the problem.) From the log:
----------------------------
revision 1.69
date: 2005-01-10 15:25:30 +0100; author: julliard; state: Exp; lines: +34 -20
Evan Deaubl <wine(a)warpedview.com>
GetItemA/W on header controls should handle message even if index is invalid.
----------------------------
I didn't try to narrow it down further, as the difference between the
two revision isn't large, and I didn't try to investigate further, as I
don't have much clue about what this piece of code does. But I hope
this helps some developer to solve the problem.
Note: I also compiled the cvs HEAD with only the mentioned file put back
to revision 1.68, and that worked fine with Shareaza. (Actually, I mean
"HEAD" in the context of full-cvs-2005-01-29.tar.gz)
jlh
--
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=2684
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=27
--
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=2684
Summary: fail to run Notes R5 since upgrade from 20041201 to
20050111
Product: Wine
Version: 20050111
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mseewald(a)gmx.de
Dear Wine developers,
I was running Lotus Notes R5 without any problems on Wine 20041201. My system is
a Intel laptop with Fedora Core 3, kernel 2.6.9-1.681_FC3 (i686). Wine was set
up using winetools.
Since the upgrade to 20050111, Lotus Notes R5 fails to start. I also tried to
rebuilt my .wine from scratch (no change).
Upon startup I see:
# wine "c:/Program Files/Notes/nlnotes.exe" =c:/NotesData/notes.ini
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:font:load_VDMX No suitable ratio found
>fixme:hook:SetWinEventHook (32770,32770,0x10810000,0x108175b0,8,9,0x00000004)-stub!
>fixme:hook:SetWinEventHook (32768,32768,0x10810000,0x10820880,8,9,0x00000004)-stub!
>wine: Unhandled exception (thread 0009), starting debugger...
And then, it hangs.
Best regards,
Michael
--
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=2513
------- Additional Comments From oliver_stieber(a)yahoo.co.uk 2005-29-01 13:52 -------
Try putting d3d8.dll or d3d9.dll in you wine windows system32 directory, you
can also change the directX version in the registery.
The only other way I've seen that application detect directX is by seeing if
CreateD3DDevice8/9 failes which it shouldn't unless there's something wrong
with you wine build.
--
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=2683
Summary: Revelation won't work
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: c0dx(a)yahoo.com
i could not get this program to work, i followed all the steps...i placed dll's
in the program's folder so no more errors from dll's...but still won't work.
Download it from http://www.veraxin.net/revelation ... in the downloads
section..download the patch program and run it...it will download the game to
your pc. It's a mud...and i can't play itunder linux:(. tell me if you come up
with something...mail me ok? c0dx(a)yahoo.com
--
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=2680
------- Additional Comments From willie(a)froq.net 2005-28-01 11:24 -------
I did just try to force xorg to use a 32bit framebuffer ("-fbbpp 32"), so it
should truely be the same as Windows' "32bit" setting. But Windows apps still
thing we're using 24bits...
I tried to find the corresponding code in Wine, to try a quick hack (report
framebuffer depth instead of color depth if color depth = 24), but I couldn't
find the function. Should be getDeviceCaps(BITSPIXELS)? Where's that one?
--
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=2681
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=12&versionId=6
| |5
--
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=2678
mike(a)navi.cx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)navi.cx 2005-28-01 10:05 -------
Just hack winetest out of the build system 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=2676
------- Additional Comments From mike(a)navi.cx 2005-28-01 09:41 -------
This is a FreeBSD specific problem, and requires in depth knowledge of the
FreeBSD threading system to fix. You will have to investigate this yourself, I
suspect.
--
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=2681
Summary: ms access 2000, forms with calculations not working
Product: Wine
Version: 20050111
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: r_vandam(a)hotpop.com
When opening a ms access (dutch version) form with a calculation in it:
The first field keeps blinking quickly until you click on it, then the
calculation is made. Sometimes it even causes ms access & wine to hang.
Reproduce:
20050111: In Northwind database open in Forms the Main switchboard. then choose
Categories --> ms access hangs.
20041201: In Northwind open form Orders. The first field (Vegie-spread) keeps
blinking until you click on it, then the calculation is made. This behaviour
crashes my own ms access application.
Console shows this messages:
fixme:nls:MultiByteToWideChar MB_USEGLYPHCHARS not supported
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32773,0x90050,27,0)-stub!
fixme:hook:NotifyWinEvent (32780,(nil),2,0)-stub!
Rob
--
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=2679
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-27-01 21:32 -------
Doh! We both pasted the wrong function too. LOL
Sorry about that I submitted a patch to fix this.
http://www.winehq.org/hypermail/wine-patches/2005/01/0743.html
--
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=2679
helly(a)gmx.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|INVALID |
------- Additional Comments From helly(a)gmx.net 2005-27-01 20:00 -------
I just took a look at the current CVS (using cvsweb).
-----------------------------------
/***********************************************************************
* CharPrevA (USER32.@)
*/
LPSTR WINAPI CharPrevA( LPCSTR start, LPCSTR ptr )
{
while (*start && (start < ptr))
{
LPCSTR next = CharNextA( start );
if (next >= ptr) break;
start = next;
}
return (LPSTR)start;
}
/***********************************************************************
* CharPrevExA (USER32.@)
*/
LPSTR WINAPI CharPrevExA( WORD codepage, LPCSTR start, LPCSTR ptr, DWORD flags )
{
while (*start && (start < ptr))
{
LPCSTR next = CharNextExA( codepage, start, flags );
if (next > ptr) break;
start = next;
}
return (LPSTR)start;
}
-----------------------------------
The bug is not present in CharPrevA(), but in CharPrevExA().
Next time I will take a look at the wine-head first ;-).
--
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=2679
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-27-01 19:52 -------
Marking invalid since this is fixed in Wine. (Wine is not Cedega)
/***********************************************************************
* CharPrevA (USER32.@)
*/
LPSTR WINAPI CharPrevA( LPCSTR start, LPCSTR ptr )
{
while (*start && (start < ptr))
{
LPCSTR next = CharNextA( start );
if (next >= ptr) break;
start = next;
}
return (LPSTR)start;
}
--
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=2680
Summary: Wine should report 32bit color depth instead of 24bit
Product: Wine
Version: CVS
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: willie(a)froq.net
Just tried the latest DAZ|Studio beta, should work fine like previous releases
did, but now it complains that it will only run at 32bit color depth. If I'm
not mistaken, there is no 32bit color depth, only a 32bit framebuffer with
24bit color depth, so Windows' "32bit" setting should be pretty much the same
as xorg's "24bit color, 32bit framebuffer" setting. And this seems to become a
problem with more and more applications...
So, I think Wine should always report 32bit depth to applications if X is set
to 24bit.
--
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=2679
Summary: Backspace and cursors do not work
Product: Wine
Version: CVS
Platform: PC
URL: http://www.winehq.org/appview.php?appid=701
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: helly(a)gmx.net
When using backspace or cursor-keys, nothing happens. This is caused by a faulty
implementation of CharPrevExA() in wine's user32-implementation. It always
returns the pointer, which is given as ending point, whereas it should return a
pointer to the previous letter.
This can be resolved by changing the if-clause from
if(next > ptr) break;
to
if(next >= ptr) break;
for my version (cvs cedega) this is in line 223 in file lstr.c
--
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=2187
------- Additional Comments From helly(a)gmx.net 2005-27-01 19:23 -------
It works if you create a virtual Desktop (in x11drv section) and configure
ragnarok to use fullscreen.
--
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=2673
------- Additional Comments From danygradilla(a)hotmail.com 2005-26-01 16:20 -------
I have the same problem with Ultima Online Samurai Empire. It looks fine in
20041019, but in 20041201 and 20050111 the colors are messed up.
Fortunately, the problem shows since the game runs, so my log is much shorter.
The game plays the proper cinematics at start, but the colors are wrong. After
the cinematics are done, the main screen is shown, and the colors are wrong too.
I have not tested past that point in the game, and don't have time at the
moment, so I will report later today or tomorrow.
In 24 bit mode, the colors are a complete mess. In 16 bit mode, it seems like
wine is handling the colors as BGR instead of RGB or something like that. I hope
you understand what I mean.
I attached my log with "WINEDEBUG=+ddraw"
Want a screenshot too?
--
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=2611
------- Additional Comments From cygnus2(a)post.cz 2005-26-01 13:10 -------
I have same problem with the same game, but in Wine version 20050111. Game
frozen randomly. Yes, my game version worked under Windows or older Wine
versions without this problem, only with minor graphics and sound problems.
=====================================
bash-2.05b$ ./Heroes.sh
fixme:profile:CloseProfileUserMapping (), stub!
err:sync:CreateEventW Bad security attributes pointer 0x1
fixme:tape:BackupSeek ((nil), 256, 6581804, 0x1, (nil), (nil)) stub!
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x403a8000)->(00010024,0000
fixme:ole:CoCreateInstance no classfactory created for CLSID {5959df60-2911-
11d1-b049-0020af30269a}, hres is 0x80040154
fixme:ddraw:DIB_DirectDrawSurface_Blt dwFlags DDBLT_WAIT and/or DDBLT_ASYNC:
can't handle right now.
fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum
fixme:mmtime:timeEndPeriod Stub; we set our timer resolution at minimum
fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel level=DSSCL_PRIORITY not f
ully supported
fixme:ole:CoCreateInstance no classfactory created for CLSID {d1eb6d20-8923-
11d0-9d97-00a0c90a43cb}, hres is 0x80040154
err:dsound:DSOUND_MixOne underrun on sound buffer 0x403c51f8
... last message repeated more times
err:dsound:DSOUND_MixOne underrun on sound buffer 0x403c51f8
err:ntdll:RtlpWaitForCriticalSection section 0x401ddb40 "virtual.c: csVirtual"
wait timed out in thread 00e5, blocked by 0009, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x403c4ccc "DSOUND_mixlock" wait
timed out in thread 000f, blocked by 000c, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x401ddb40 "virtual.c: csVirtual"
wait timed out in thread 00e4, blocked by 0009, retrying (60 sec)
err:ntdll:RtlpWaitForCriticalSection section 0x401ddb40 "virtual.c: csVirtual"
wait timed out in thread 000c, blocked by 0009, retrying (60 sec)
--
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=2601
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
--
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=2498
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=631
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-26-01 10:46 -------
Resolving FIXED then.
--
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=2498
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-25-01 19:58 -------
Robert Reif's patch is in cvs. Does it fix the problem so we can close this bug?
http://www.winehq.org/hypermail/wine-cvs/2005/01/0599.html
--
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=54
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2005-25-01 18:12 -------
Resolving FIXED
--
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=54
------- Additional Comments From ikrakow_1999(a)yahoo.com 2005-25-01 12:27 -------
Looks like it works in Wine 20050111.
--
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=52
------- Additional Comments From ikrakow_1999(a)yahoo.com 2005-25-01 12:23 -------
Still a bug. In Wine 20050511, produces the following messages:
fixme:dc:LockWindowUpdate (0x10020), partial stub!
fixme:dc:GetDCEx not yet supported - see source
fixme:dc:LockWindowUpdate (nil), partial stub!
before scrambling the screen.
Still does not restore the screen to its original state, as it does when running
on Windows XP Home.
--
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=2498
------- Additional Comments From reif(a)earthlink.net 2005-25-01 11:15 -------
I just posted a patch to wine-patches that should fix this problem. Please try 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=2498
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2005-25-01 07:04 -------
during regression-test I use CDT timezone, so the date formatted in such way:
"Mon Sep 06 15:23:27 2004 CDT"
to format it I:
1, go to the wine-cvs mailing list.
2, select the patch of interest (I would prefer the earliest patch of "Sep 06
2004" as there may arise time differences because of difference of the timezones
used by Alexandre's submission tool and your cvs-client).
3, copy down the date of the patch ("Mon Sep 06 2004 - 15:23:26 CDT").
4, rearrange it by moving "2004 " just before the "CDT " begins.
5, eliminate "- " junk.
6, change time-part by 1 second. to make sure the patch will get into your CVS
tree I increase the time. for the patch to not get into the tree I decrease the
time. in my example I have increased it.
to see the differences in non-abstract way:
"Mon Sep 06 2004 - 15:23:26 CDT" (from the web-page)
"Mon Sep 06 15:23:27 2004 CDT" (to the cvs-client)
not really so hard, huh? sorry, if this is redundant. I have learned no other
way around for a while.
and I would suggest the ending patch to be of "Wed Sep 08 2004 - 19:30:30 CDT",
as it is the last patch this day commited on "Sept 8, 2004". Hence:
"Wed Sep 08 2004 - 19:30:30 CDT" (from the web-page)
"Wed Sep 08 19:30:31 2004 CDT" (to the cvs-client)
and it seems you are stuck with two different regressing patches, living each
near other. when the first offending patch is found, I suggest to test the Wine
by traveling from the found patch to the one of "Fri Sep 10 2004 - 17:30:06
CDT", lets say.
HTH, corrections are welcome.
[1] http://www.winehq.org/hypermail/wine-cvs/2004/09/index.html
--
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=2676
------- Additional Comments From mirya(a)ukrpost.net 2005-25-01 02:53 -------
Maybe I forgot to specify env. notes :): FreeBSD 5_RELENG kernel with 5_3_RELENG
base, i686, 128Mb RAM, 1 400MHz CPU, wine is set up upon WinXP SP2 box.
Than more sad news: tried the same on another machine - again FreeBSD 5_RELENG
kernel with 5_3_RELENG base, but P4, 256Mb RAM, 1 1.7GHz CPU, standalone wine.
Setting up MSIE6 with sidenet script fails 'cause of the problem reported
somewhere in MSIE downloader (russian version ie6setup_RU.exe, 493816 bytes,
md5() == 1aced53d28ac95474dd3dc47ce20582a). Again, using wine binary package
(ftp://ftp2.freebsd.org/pub/FreeBSD/ports/i386/packages-5-stable/All/wine-20…,
8146197 bytes, md5() == c0473a8d9dea3b7ed72d731073c677d3), got the log:
$ wine ie6setup_RU.exe
fixme:file:get_default_drive_device auto detection of DOS devices not supported
on this platform
fixme:ntdll:NtQueryVolumeInformationFile device info not properly supported on
this platform
err:heap:HEAP_CreateSystemHeap system heap base address 0x80000000 not available
Please use the registry key HKEY_CURRENT_CONFIG\Software\Fonts\LogPixels
to set the screen resolution and remove the "Resolution" entry in the config file
fixme:advapi:DecryptFileA "C:\\windows\\temp\\IXP001.TMP\\" 00000000
fixme:ntdll:NtQueryVolumeInformationFile device info not properly supported on
this platform
err:heap:HEAP_CreateSystemHeap system heap base address 0x80000000 not available
Please use the registry key HKEY_CURRENT_CONFIG\Software\Fonts\LogPixels
to set the screen resolution and remove the "Resolution" entry in the config file
fixme:cursor:CURSORICON_SimulateLoadingFromResourceW Animated icons not
correctly implemented! 0x360000
fixme:cursor:CURSORICON_SimulateLoadingFromResourceW icon entry found! 0x360000
fixme:cursor:CURSORICON_SimulateLoadingFromResourceW icon size ok. offset=0x360074
fixme:setupapi:SETUPX_CreateStandardLDDs LDID_SRCPATH: what exactly do we have
to do here ?
fixme:font:load_VDMX No suitable ratio found
fixme:file:get_default_drive_device auto detection of DOS devices not supported
on this platform
fixme:font:load_VDMX No suitable ratio found
fixme:setupapi:GenInstall16 unsupported flag: GENINSTALL_DO_REGSRCPATH
fixme:setupapi:vcpUICallbackProc16 (0xcbe0, 0705, 0000, 00000000, 001aa67c) -
semi-stub
fixme:setupapi:vcpUICallbackProc16 (0xcbe0, 070f, 0000, 00000000, 001aa67c) -
semi-stub
fixme:setupapi:vcpUICallbackProc16 (0xcbe0, 0710, 0000, 00000000, 001aa67c) -
semi-stub
fixme:setupapi:vcpUICallbackProc16 (0xcbe0, 070b, 0000, 00000000, 001aa67c) -
semi-stub
fixme:setupapi:vcpUICallbackProc16 (0xcbe0, 070c, 0000, 00000000, 001aa67c) -
semi-stub
fixme:setupapi:GenInstall16 unsupported flag: GENINSTALL_DO_CFGAUTO
fixme:setupapi:GenInstall16 unsupported flag: GENINSTALL_DO_REGSRCPATH
fixme:setupapi:GenInstall16 unsupported flag: GENINSTALL_DO_CFGAUTO
fixme:setupapi:GenInstall16 unsupported flag: GENINSTALL_DO_REGSRCPATH
fixme:setupapi:GenInstall16 unsupported flag: GENINSTALL_DO_CFGAUTO
fixme:font:load_VDMX No suitable ratio found
fixme:font:load_VDMX No suitable ratio found
fixme:setupapi:GenInstall16 unsupported flag: GENINSTALL_DO_REGSRCPATH
fixme:setupapi:GenInstall16 unsupported flag: GENINSTALL_DO_CFGAUTO
Fatal error 'Uninitialized mutex in pthread_mutex_trylock_basic' at line 474 in
file /usr/src/lib/libpthread/thread/thr_mutex.c (errno = 22)
wine: Unhandled exception (thread 0015), starting debugger...
fixme:ntdll:NtQueryVolumeInformationFile device info not properly supported on
this platform
err:heap:HEAP_CreateSystemHeap system heap base address 0x80000000 not available
WineDbg starting on pid 0xa
Couldn't initiate DbgHelp
fixme:seh:UnhandledExceptionFilter Unhandled error on debug event: 0
Unhandled exception: assertion failed in 32-bit code (0xb7f9c1d7).
file_set_error: Bad address
file_set_error: Bad address
In 32 bit mode.
Register dump:
CS:001f SS:002f DS:002f ES:002f FS:126f GS:0097
EIP:b7f9c1d7 ESP:00e7f950 EBP:00e7f96c EFLAGS:00000202( - 00 - - I1)
EAX:00000000 EBX:b80135ec ECX:00000005 EDX:000003e3
ESI:00e7f98c EDI:00e7f984
Stack dump:
0x00e7f950: b7f9127e 000003e4 00000006 00000000
0x00e7f960: 00000000 00000212 b80135ec 00e7f9bc
0x00e7f970: b8003627 00000006 00e7f98c 00000000
0x00e7f980: b80035f2 00343232 b7ffe21e ffffffdf
0x00e7f990: ffffffff ffffffff ffffffff b7f0a992
0x00e7f9a0: b7f34c00 b98be840 010963b0 00e7f9b4
024d: sel=126f base=00116000 limit=00001fff 32-bit rw-
Backtrace:
file_set_error: Bad address
=>1 0xb7f9c1d7 (0x00e7f96c)
2 0xb8003627 (0x00e7f9bc)
file_set_error: Bad address
0xb7f9c1d7: jb 0xb7f9c1bc
Wine-dbg>
--
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=2498
------- Additional Comments From aethyr7(a)hotmail.com 2005-25-01 00:31 -------
I'm trying to do regression testing, but it's pretty slow going, as it seems
like there were a lot of commits done all at once.
Basically, here's the situation:
cvs -z3 -q update -PAd -D "Sept 7, 2004"
Mouse is fine.
cvs -z3 -q update -PAd -D "Sept 8, 2004"
No mouse movement at all.
cvs -z3 -q update -PAd -D "Sept 9, 2004"
Messed up movement along Y-axis (what I saw when I made this bug report).
I just don't know how to figure out what specific cvs commits broke 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=2017
------- Additional Comments From v8p53fo02(a)sneakemail.com 2005-24-01 18:45 -------
Andrea, Thanks for that.
That's narrowed down the problem a little (I think I may know what's wrong)
Can I ask you to repeat the procedure with wine running in synchronous mode (see
your Wine config file and set "Synchronous" = "Y" in the [X11DRV] section), and
once again, post the results here.
It would also help to know what version of wine you're using.
Many thanks
-Rob.
--
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=2616
------- Additional Comments From kilgus(a)fuenfsieben.de 2005-24-01 12:57 -------
News: I set up my system from scratch using SuSE 9.2, current (again already
updated) version of wine being 20050111 now. Display is a little bit stringy
but text in menus and dialogues is visible again.
--
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.