http://bugs.winehq.org/show_bug.cgi?id=3906
------- Additional Comments From willie(a)froq.net 2005-24-11 15:17 -------
Are you sure? Don't you mean:
+ if (IsEqualGUID(&IID_IDirectInputDevice8A,riid)) {
^
Else, it would be exactly the same as the previous check (and Wine crashes the
same with your patch applied unaltered)...? But with the line changed as
pointed out above, it leads to a crash in libc.so.6:
--- 8< ---
trace:dinput:SysKeyboardAImpl_SetProperty
(this=0x6f4cffa0,<guid-0x0001>,0x55bdfb18)
trace:dinput:SysKeyboardAImpl_SetProperty (size=20,headersize=16,obj=0,how=0
trace:dinput:SysKeyboardAImpl_SetProperty (buffersize=256)
trace:dinput:SysKeyboardAImpl_Acquire (this=0x6f4cffa0)
trace:dinput:IDirectInputAImpl_EnumDevices (this=0x6f4cfd38,0x0004
'DIDEVTYPE_JOYSTICK',0x571e3f10,0x55bdfb38,0001)
trace:dinput:IDirectInputAImpl_EnumDevices flags:
trace:dinput:IDirectInputAImpl_EnumDevices - checking device 0 ('Wine mouse
driver')
trace:dinput:IDirectInputAImpl_EnumDevices - checking device 1 ('Wine
keyboard driver')
trace:dinput:IDirectInputAImpl_EnumDevices - checking device 2 ('Wine
Linux-input joystick driver')
trace:dinput:IDirectInputAImpl_EnumDevices - checking device 3 ('Wine Linux
joystick driver')
warn:dinput:joydev_enum_deviceA open(/dev/js0,O_RDONLY) failed: No such file
or directory
trace:dinput:SysMouseAImpl_Unacquire (this=0x6f4cfd50)
trace:dinput:SysMouseAImpl_Unacquire warping mouse back to (730 , 817)
trace:dinput:SysMouseAImpl_SetCooperativeLevel
(this=0x6f4cfd50,0x40022,0x00000006)
trace:dinput:SysMouseAImpl_SetCooperativeLevel cooperative level :
DISCL_FOREGROUND DISCL_NONEXCLUSIVE
trace:dinput:SysMouseAImpl_Acquire (this=0x6f4cfd50)
trace:dinput:SysMouseAImpl_Acquire Warping mouse to 512 - 384
wine: Unhandled page fault on read access to 0x00000000 at address 0x5562b57c
(thread 000b), starting debugger...
--- >8 ---
--
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=3906
------- Additional Comments From tony.lambregts(a)gmail.com 2005-24-11 15:09 -------
+ if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
??? that is exactly the same as the previous lines. Shouldn't that be an 8...?
+ if (IsEqualGUID(&IID_IDirectInputDevice8A,riid)) {
+ IDirectInputDevice7_AddRef(iface);
+ *ppobj = This;
+ return DI_OK;
+ }
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3906
------- Additional Comments From lionel.ulmer(a)free.fr 2005-24-11 14:49 -------
0009:trace:dinput:IDirectInputDevice2AImpl_QueryInterface (this=0x5a1df318,
{54d41080-dc15-4833-a41b-748f73a38179},0x5c57493c)
0009:trace:dinput:IDirectInputDevice2AImpl_QueryInterface Unsupported
interface !
DEFINE_GUID(IID_IDirectInputDevice8A,0x54D41080,0xDC15,0x4833,0xA4,0x1B,0x74,0x8F,0x73,0xA3,0x81,0x79);
So it's trying to get the interface to a Device8A object.
Could you try changing the dlls/dinput/device.c file in the function
'IDirectInputDevice2AImpl_QueryInterface' adding the part with the '+' in front:
if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
IDirectInputDevice7_AddRef(iface);
*ppobj = This;
return DI_OK;
}
+ if (IsEqualGUID(&IID_IDirectInputDevice7A,riid)) {
+ IDirectInputDevice7_AddRef(iface);
+ *ppobj = This;
+ return DI_OK;
+ }
TRACE("Unsupported interface !\n");
return E_FAIL;
--
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=3891
alaeddinaydiner(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From alaeddinaydiner(a)yahoo.com 2005-24-11 14:49 -------
You are right. I got fooled by the rpm release version of the winehq rpm and
missed the '-'.
$rpm -q wine
wine-0.9-1fc4winehq
$wine --version
Wine 0.9
I checked with the true 0.9.1; and indeed the problem is not there.
Thanks a lot.
--
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=3930
------- Additional Comments From alex(a)thehandofagony.com 2005-24-11 14:21 -------
I tried with all Windows versions, but was not able to make it work. With
winver 98, however, I was able to make it start (though it only displayed a
black screen). The console output is now different (with winver 2000), probably
because the game has some tests it runs at first start. Now the same thing
happens as with winver 98: a black screen and no crash.
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x7fd48f20)->(0x10022,00000013)
fixme:xrandr:X11DRV_XRandR_SetCurrentMode Cannot change screen BPP from 32 to 8
fixme:xrandr:X11DRV_XRandR_SetCurrentMode Cannot change screen BPP from 32 to 8
fixme:x11drv:X11DRV_DDHAL_CreatePalette stub
fixme:mci:MCI_LoadMciDriver Couldn't load driver for type L"D:".
If you don't have a windows installation accessible from Wine,
you perhaps forgot to create a [mci] section in system.ini
--
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=3928
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, source
--
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=2666
------- Additional Comments From lionel.ulmer(a)free.fr 2005-24-11 14:10 -------
And does it improve during the game itself ? I know that the menu screen i black
instead of white / yellow but with my patch I think that (at least) the game is
better.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3930
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Summary|HOMM won't start (unhandled |HOMM won't start (due to
|privileged instruction) |"cli" illegal instruction)
------- Additional Comments From marcus(a)jet.franken.de 2005-24-11 13:58 -------
Can you switch the default windows version using "winecfg" to nt4 or winxp?
perhaps it will not use "cli" in these versions.
--
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=3926
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2005-24-11 13:57 -------
So can this be closed now?
I seen a download page for the Oracle 10 client here:
http://www.oracle.com/technology/tech/oci/instantclient/instantclient.html
Is it relevant to this bug?? (does it show the same behaviour?)
--
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=3925
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |regression
Summary|ISS runtimes dosen't install|ISS runtimes dosen't install
| |after 0.9
--
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=3924
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://get.games.yahoo.com/p
| |roddesc?gamekey=tradewinds
Keywords| |download, 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=3538
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.originlab.com/ind
| |ex.aspx?s=12&lm=+62
Keywords| |download, NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2005-24-11 13:44 -------
An Evaluation version of Origin 7.5 is downloadable here:
http://www.originlab.com/index.aspx?s=12&lm=+62
it requires a signup :-(
--
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=3929
Summary: Warcraft 3 doesn't change the cursor properly
Product: Wine
Version: 0.9.1.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: trivial
Priority: P3
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas(a)ahle.dk
Warcraft 3 doesn't change the cursor to a hand, but keeps it as a corsair all
the time. It changes color and works correctly. The click point also is in the
upper left corner, as if it had been a hand.
--
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=3928
Summary: EnunChildWindows fails to find a child window who did
setParent
Product: Wine
Version: 0.9.1.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew7webb(a)comcast.net
PROBLEM:
EnunChildWindows() fails to find a child window who did setParent().
There are two windows, "WidgetTest2" and "DockingWidget".
"DockingWidget" is created with "WidgetTest2" as its parent.
"WidgetTest2" later calls
EnumChildWindows( This->handle(), EnumChildProc, (LPARAM)0 )
But although EnumChildWindows returns true, EnumChildProc is never called.
WINE OUTPUT OF PROGRAM:
"EnumChildWindows returned true"
WINDOWS OUTPUT OF PROGRAM:
I can break on the DestroyWindow( hwndChild ); inside EnumChildProc().
HOW TO REPRODUCE THE PROBLEM:
Run either the WINE or windows program and try to close the outer window.
On windows the program will exit,
but on WINE it hangs because the docked window is not destroyed.
--
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=3411
oliver_stieber(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From oliver_stieber(a)yahoo.co.uk 2005-24-11 12:58 -------
comfirming as fixed, I managed to get all the way into the game play so it looks
like cursor support should get this one to bronze.
--
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=1434
Bug 1434 depends on bug 3411, which changed state.
Bug 3411 Summary: Mouse input doesn't work properly in dungeon siege 2
http://bugs.winehq.org/show_bug.cgi?id=3411
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |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=3475
------- Additional Comments From andrew.james.barr(a)gmail.com 2005-24-11 12:51 -------
I am getting a similar issue with FileMaker Pro 8. The license key MaskEdit
control does not appear in Wine versions 20050930 or later. IIRC it appears in
20050830 but there are other issues with builtin MSI that cause the installer to
fail later. I was able to install and run FileMaker with Wine 0.9.2 with the
following change reverted:
http://cvs.winehq.org/cvsweb/wine/dlls/msi/dialog.c.diff?r1=1.56&r2=1.57
'patch' reports some fuzzy offsets but it does revert w/o error.
AFAICT native MSI is not an option for FileMaker Pro 8 because in requires
Windows 2k/XP.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3573
------- Additional Comments From dragoran(a)feuerpokemon.de 2005-24-11 12:21 -------
the problem still exists in wine 0.9.2:
err:rebar:REBAR_AdjustBands Phase 1 failed, x=740, maxx=-4, start=0, end=0
err:rebar:REBAR_AdjustBands Phase 1 failed, x=740, maxx=-4, start=0, end=0
err:rebar:REBAR_AdjustBands Phase 1 failed, x=40, maxx=-4, start=1, end=1
err:rebar:REBAR_AdjustBands Phase 1 failed, x=740, maxx=-4, start=0, end=0
err:rebar:REBAR_AdjustBands Phase 1 failed, x=40, maxx=-4, start=1, end=1
err:rebar:REBAR_AdjustBands Phase 1 failed, x=100, maxx=-4, start=2, end=2
X Error of failed request: BadAlloc (insufficient resources for operation)
Major opcode of failed request: 53 (X_CreatePixmap)
Serial number of failed request: 3341
Current serial number in output stream: 3343
--
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=3927
Summary: wine-0.9.2.tar.bz2 from sf.net has size 0
Product: WineHQ.com
Version: unspecified
Platform: Other
OS/Version: other
Status: NEW
Severity: normal
Priority: P2
Component: misc-web
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andreas.bierfert(a)lowlatency.de
No matter what mirror I try... the file size is always 0...
--
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=3924
------- Additional Comments From vitaliy(a)kievinfo.com 2005-24-11 09:47 -------
No, it's trying to open file. Why would Wine search all these directories then?
And 0xc0000034 is STATUS_OBJECT_NAME_NOT_FOUND.
--
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=3891
------- Additional Comments From wijn(a)wanadoo.nl 2005-24-11 09:42 -------
The log shows fd leaks that were fixed in Wine 0.9.1
It looks that you are not using the version that you think you are using.
--
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=3926
------- Additional Comments From tuharsky(a)misbb.sk 2005-24-11 09:25 -------
Everything I have written since now was for wine 0.9
Now with wine 0.9.2, Oracle 10 client acts the same, when Oracle 8.1.7 opens
correct(!!) installer window, buttons function, but after confirming
installation it crashes.
Great work, Oracle 8.1.7 installer works much better with 0.9.2 than with 0.9
--
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=3925
------- Additional Comments From tuharsky(a)misbb.sk 2005-24-11 09:15 -------
Well, I wiped 0.9 binaries and compiled 0.9.2, but I have kept userspace files.
I can run ISS with 0.9.2 (runtimes were installed on 0.9)
So, this issue shows that something has been broken in 0.9.1 and 0.9.2, compared
with 0.9
--
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=3926
------- Additional Comments From tuharsky(a)misbb.sk 2005-24-11 09:07 -------
After Oracle 8 window freezes, the wine-preloader hangs with 100% CPU.
--
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=3926
------- Additional Comments From tuharsky(a)misbb.sk 2005-24-11 08:59 -------
Created an attachment (id=1413)
--> (http://bugs.winehq.org/attachment.cgi?id=1413&action=view)
Screenshot of Oracle8 installation
After running Oracle8 installer, for a moment "Loading..." appears in window.
Then window stays as shown (keeps lower window graphical screenshot, even after
movement).
This might be a silly refresh bug. I can't tell, if there is something active
on the window, or if it is completely hang. Random clicking on the window area
dosen't do anything visible.
--
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=3926
------- Additional Comments From tuharsky(a)misbb.sk 2005-24-11 08:52 -------
Hmm, I see I was not accurate.
Please don't consider the Java statement to be 100% truth. What I described was
problem with Oracle 8 Client (which would come handy too, if it worked).
Oracle 10 starts up, writes few lines about starting installation in text-like
graphical window, and exits.
--
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=3926
Summary: Oracle Client dosen't install because of Java
Product: Wine
Version: 0.9.2.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tuharsky(a)misbb.sk
When I run Oracle Client 10 installer under Wine, it immediately calls for Java
(the whole installer is in Java). Graphical window opens, it's black however and
nothing else happens.
Problem is, that Oracle client for Linux dosen't contain odbc driver, so windows
client must be 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=3925
------- Additional Comments From tuharsky(a)misbb.sk 2005-24-11 08:28 -------
Created an attachment (id=1411)
--> (http://bugs.winehq.org/attachment.cgi?id=1411&action=view)
Step4 -setup.exe again -log (rar-ed)
And finally, Step4 -setup.exe again. Fortunately, at the end he claims, that
installation succeeded.
I'm sorry, bz2 didn't make it. I must have used rar.
--
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=3925
------- Additional Comments From tuharsky(a)misbb.sk 2005-24-11 07:46 -------
So, I wiped out all wine files (/usr/local/lib ,/usr/local/bin, userspace files).
I compiled wine 0.9 and installed again.
The process was the same, although there were some painting bugs in 0.9 that
have disappeared in 0.9.2
In the Step 4, however, the installator claims everything is OK.
And I can run ISS.
I'll post logs.
--
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=3925
------- Additional Comments From tuharsky(a)misbb.sk 2005-24-11 07:01 -------
Now I'm going to wipe out wine 0.9.2, compile 0.9 and run all again, and post
the logs so that somebody could find out, what differs.
--
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=3925
------- Additional Comments From tuharsky(a)misbb.sk 2005-24-11 06:42 -------
Created an attachment (id=1403)
--> (http://bugs.winehq.org/attachment.cgi?id=1403&action=view)
logfile from step 1 (first run of setup.exe) (bz2-ed)
Here I run step 1, setup.exe
I use command as shown in documentation
echo quit | WINEDEBUG=+relay wine setup.exe >& wine092_rt30_run1.log
Since this is not a typical crash and I don't know, if really only the last 100
lines are needed, I send the whole log (don't beat me ;o)
--
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=3925
Summary: ISS runtimes dosen't install
Product: Wine
Version: 0.9.2.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tuharsky(a)misbb.sk
Debian Sarge 3.1 Stable, gcc version 3.3.5, no windows installation (wine only).
We use propietary app called ISS, which runs on VFP7 and is transiting to VFP9.
The runtime installer is custom made by vendor. He also uses some lower-level
installation ways that allow us to install the runtimes.
The installation now typically works like this:
1, I run setup.exe, click whatever needed. App ends up with some "installation
interrupted". Runtimes are not functional.
2, I run copy script that copies needed libraries to desired destination
3, I run regedit to register the appropriate .reg file
4, I run setup.exe again, now ends with success
Everything runs.
Such an installation works on 0.9 only, however. Any newer version of wine, the
installation dosen't work: the installer in step 4 shows the same results as in
step 1 and runtimes don't function.
Since we strongly rely on potential developement of wine, we need to be able to
run the current version with all bugfixes available. Thus broken installation
dosen't help either ;o)
I can't tell, what's the difference so I managed to run both installations,
create logs and send in here.
--
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=3701
------- Additional Comments From cihan(a)uq.edu.au 2005-24-11 05:53 -------
Oh sorry, I had to copy the CD over to my harddrive first of course. :-)
--
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=3924
Summary: warn:file:CreateFileW Unable to create file
L"c:\\windows\\system32\\ --MPRMMGVA--.exe" (status
c0000034)
Product: Wine
Version: 0.9.1.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: polpak(a)yahoo.com
I originally got this error after installing the yahoo game "TradeWinds 2". It's
available at http://games.yahoo.com/games/downloads/tradewinds2.html . From
running wine with debugging on the errors I get are:
warn:file:wine_nt_to_unix_file_name L" --MPRMMGVA--.exe" not found in
/home/kender/.wine/dosdevices/c:/Program Files/Yahoo! Games/TradeWinds 2
warn:file:wine_nt_to_unix_file_name L" --MPRMMGVA--.exe" not found in
/home/kender/.wine/dosdevices/c:/Program Files/Yahoo! Games/TradeWinds 2
warn:file:wine_nt_to_unix_file_name L" --MPRMMGVA--.exe" not found in
/home/kender/.wine/dosdevices/c:/windows/system32
warn:file:wine_nt_to_unix_file_name L" --MPRMMGVA--.exe" not found in
/home/kender/.wine/dosdevices/c:/windows/system
warn:file:wine_nt_to_unix_file_name L" --MPRMMGVA--.exe" not found in
/home/kender/.wine/dosdevices/c:/windows
warn:file:wine_nt_to_unix_file_name L" --MPRMMGVA--.exe" not found in
/home/kender/.wine/dosdevices/c:/windows/system32
warn:file:wine_nt_to_unix_file_name L" --MPRMMGVA--.exe" not found in
/home/kender/.wine/dosdevices/c:/windows
warn:file:wine_nt_to_unix_file_name L" --MPRMMGVA--.exe" not found in
/home/kender/.wine/dosdevices/c:/windows/system32
warn:ntdll:NtCreateFile L"\\??\\C:\\windows\\system32\\ --MPRMMGVA--.exe" not
found (c0000034)
warn:file:CreateFileW Unable to create file L"c:\\windows\\system32\\
--MPRMMGVA--.exe" (status c0000034)
warn:driver:CloseDriver Failed to close driver
warn:driver:CloseDriver Failed to close driver
warn:driver:CloseDriver Failed to close driver
warn:driver:CloseDriver Failed to close driver
warn:driver:CloseDriver Failed to close driver
It looks as if it's trying to create a file, and cannot for some reason.
Permissions are all fine, there shouldn't be any problems except perhaps that
the file name contains a space or nonprinting character (the first character)
and it also begins with a dash.
Dunno if it helps, but I also found this much older bug complaining about the
same issue with another program (Civ 3 I think it was) looking for the exact
same file though, which seems highly suspect.
Anyway, the original bug was 2705
--
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=3538
------- Additional Comments From burnus(a)gmx.de 2005-24-11 04:06 -------
> Can you post sample code? Is this in C++?
No, I have frankly. First, this is from a commercial program (Origin 7.5, sorry,
I forgot to mention it) and secondly, I don't even know how it is done. (Which
is my main obstacle for getting useful traces/debugging logs.)
--
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=3712
------- Additional Comments From jrliggett(a)cox.net 2005-24-11 02:32 -------
I also forgot to mention that I'm also using X.org 6.8.2
--
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=3712
------- Additional Comments From jrliggett(a)cox.net 2005-24-11 02:30 -------
There seems to have been a pixel shader regression recently. Instead of going to
the white screen now, it bombs out to WineDbg and just dies. When I get it back
to the way it was I'll give you the traces you need. BTW, I'm using an ATI
Radeon 9800 Pro with fglrx drivers 8.19.10
--
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=3701
------- Additional Comments From philip.kent(a)ntlworld.com 2005-24-11 00:54 -------
Technically isn't that impossible. By the look of it you made a folder on your CD.
--
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=2398
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |winehq(a)richardneill.org
------- Additional Comments From vitaliy(a)kievinfo.com 2005-23-11 23:22 -------
*** Bug 3922 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 on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3922
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2005-23-11 23:22 -------
*** This bug has been marked as a duplicate of 2398 ***
--
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=3922
------- Additional Comments From winehq(a)richardneill.org 2005-23-11 23:09 -------
Yes. The earth frame is offset to the lower left, so it covers the controls.
They reappear if you mouseover the right place.
Also, the File/Edit/View menus at the top are invisible unless you mouse-over them.
--
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=3922
------- Additional Comments From vitaliy(a)kievinfo.com 2005-23-11 23:00 -------
Are you talking about Earth glob overlapping the controls?
--
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=1772
------- Additional Comments From hutyerah(a)necrobation.org 2005-23-11 22:52 -------
Ok, I've also found this fixme with GTA2, which is freely downloadable from
www.rockstargames.com/classics . I'm using Wine 0.9.2. Relevant error message I
got (among a bunch of others about directplay and one about ALSA/dmix) is
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x40389368)->((nil),00000008)
http://hutyerah.necrobation.org/gta2log.txt.bz2 has the output with
+ddraw,+relay,+seh,+tid. If you need anything more, just ask :D
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=3891
alaeddinaydiner(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #1384 is|0 |1
obsolete| |
------- Additional Comments From alaeddinaydiner(a)yahoo.com 2005-23-11 21:52 -------
Created an attachment (id=1402)
--> (http://bugs.winehq.org/attachment.cgi?id=1402&action=view)
LC_ALL=en_US WINEDEBUG=+relay,+comm wine BelkinNavSys.exe &> ~/verbose.log
This bzipped log is half a megabyte, which, I hope, is still reasonable for
Bugzilla.
Here is what I did to avoid an extremely long log.
LC_ALL=en_US WINEDEBUG=+relay,+comm wine BelkinNavSys.exe &> ~/verbose.log &
sleep 100;
echo "Killing it!"
pkill -9 wine;
Within 100 seconds, I did see the main application window and some Bluetooth
communication. With this much logging, half of the time is spent to start the
application. :-)
--
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=3922
Summary: Google Earth Almost working! But the controls keep
hiding.
Product: Wine
Version: 0.9.2.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)richardneill.org
I'm delighted to see that Google Earth is almost usable in 0.9.2. Much kudos!
There is a remaining bug: the controls (menus, and sidebars) are invisible. They
appear in the right place if you know where to click. So I think that it is
0.995% of the way to working - and with one more squished bug, it's another
application you could maybe add to the Gold status.
It appears to be caused by stubs in ImmReleaseContext and ImmGetContext
--
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=3921
Summary: MS Office 97 (winword,powerpoint) crash with unhandled
page fault
Product: Wine
Version: 0.9.2.
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winehq(a)richardneill.org
In both 0.9.1 and 0.9.2, all the MS Office 97 applications crash. They start up
perfectly fine, and just at the moment when one is about to heave a sigh of
relief (about 6 seconds after starting the program), the application vanishes!
Wine gives the following error. I can attach a log if you like.
wine .wine/fake_windows/Program\ Files/Microsoft\ Office/Office/powerpnt.exe
fixme:heap:RtlCompactHeap stub [repeats 4 times]
fixme:wave:wodOpen unimplemented format: WAVE_FORMAT_ADPCM
wine:Unhandled page fault on read access to 0x01cc0000 at adddress 0xb7df2333
(thread 000a), starting debugger...
fixme:heap:RtlCompactHeap stub
WineDbg starting on pid 0x8
Unhandled exception on read access to 0x01cc0000 in 32-bit code (0xb7df2333).
In 32 bit mode.
Register dump
...
I installed this using the latest winetools, and installed SP2 of Office 97,
although this problem was still true with SP1 in wine 0.9.1. Incidentally,
Photoshop7 still works great. Also, you have very nearly got GoogleEarth to work!
--
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=3701
------- Additional Comments From cihan(a)uq.edu.au 2005-23-11 19:46 -------
Ok, I found a workaround for Office 2003.
I started the installer with WINEDEBUG=+file and found the following:
warn:file:CreateFileW Unable to create file
L"Z:\\mnt\\O2K3CD\\FILES\\PFILES\\MSOFFICE\\OFFICE11\\1033\\011\\SKU011.XML"
(status c0000034)
The file SKU011.XML exists on the toplevel directory (ie. mnt/O2K3CD)
but the whole folder .../011 does not exist. So I created the folder and
copied the file over.
However, one more step was necessary to get rid of the error. I have to
use native MSXML3 because of this:
err:ole:CoGetClassObject no class object {f6d90f11-9c73-11d3-b32e-00c04f990bb4}
could be created for for context 0x1
fixme:ole:CoCreateInstance no classfactory created for CLSID
{f6d90f11-9c73-11d3-b32e-00c04f990bb4}, hres is 0x80040111
Anyway, this is just a workaround. Philip, I would appreciate if you could
try the same procedure with your Office problem and see if you have the same
problem with a file not being found. If so, there must be something wrong in
the way MSI looks for files (or similar)...
Cheers
--
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=3730
fenix(a)club-internet.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-binary |wine-x11driver
------- Additional Comments From fenix(a)club-internet.fr 2005-23-11 19:12 -------
It's not the problem (imm don't have anything to do with graphic)
Anyway you can do "xrandr -s 0" to back to your normal resolution.
--
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=3323
fenix(a)club-internet.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |fenix(a)club-internet.fr
--
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=3323
------- Additional Comments From fenix(a)club-internet.fr 2005-23-11 19:09 -------
Any improvement with current cvs (or 0.9.2) ?
Which game you use ?
Any demo available ?
Regards,
Raphael
--
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=3748
fenix(a)club-internet.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |ASSIGNED
Component|wine-misc |wine-x11driver
Ever Confirmed| |1
------- Additional Comments From fenix(a)club-internet.fr 2005-23-11 19:08 -------
Patch Sent
Good Catch Chris
Regards,
Raphael
--
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=3919
Summary: Picasa Timeline feature doesn't show in fullscreen
Product: Wine
Version: CVS
Platform: Other
URL: http://dl.google.com/picasa/picasa2-current.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: clay.wood(a)gmail.com
CC: dank(a)kegel.com
I'm running version 0.9.1 installed from CVS for a Red Hat 9 i686 build.
When I click on the Timeline button, Picasa takes up the entire screen but does
not resize the image to take up the entire screen. Instead it shows a blank
screen with the Timeline portion taking up a small part in the middle.
Here's the version of Picasa I installed:
http://dl.google.com/picasa/picasa2-current.exe
To reproduce:
1. Select a folder of pictures.
2. Click on the Timeline button.
3. When the screen switches to Timeline mode Picasa takes over the full screen,
but the Timeline portion is not resized to fill the screen.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3892
fenix(a)club-internet.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-misc |wine-directx-dsound
------- Additional Comments From fenix(a)club-internet.fr 2005-23-11 18:23 -------
Random dsound crashs as usual (same as WoW)
--
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=3915
------- Additional Comments From pluby(a)sbcglobal.net 2005-23-11 18:20 -------
Important update:
Additional experimentation with popular GTK Win32 software demonstrated that
even GIMP (one of the most popular Linux Win32 ports) exhibited the same
"black-on-black" behavior in Wine. However, I noticed that Gaim (the most
popular Linux Win32 port) had it's own GTK installer... which I used, and which
*solved the problem*. Gimp (and all my own apps) now all run beautifully.
So the urgency of this as a "wine bug", per-se, has dropped immensely -- that is
wine is still acting different from Windows, but only in regard to what appears
to be a "wine unfriendly" version of the GTK installers (so I suppose I should
now contact the GIMP devlopers with my experience).
The wine-friendly Win32 GTK installers from Gaim are found here:
http://prdownloads.sourceforge.net/gaim/gtk-runtime-2.6.9-rev-a.exe?download
The wine-unfriendly Win32 GTK installers came from here:
http://prdownloads.sourceforge.net/gimp-win/gtk%2B-2.6.9-setup.zip?download
--
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=3789
fenix(a)club-internet.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From fenix(a)club-internet.fr 2005-23-11 17:55 -------
Duplicate of 2884.
One bug is sufficient.
*** This bug has been marked as a duplicate of 2884 ***
--
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=2884
------- Additional Comments From fenix(a)club-internet.fr 2005-23-11 17:55 -------
*** Bug 3789 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=3885
------- Additional Comments From fenix(a)club-internet.fr 2005-23-11 17:50 -------
Point Sprite is not supported by wine
(i haven't seen how to implement it but i haven't see games who use it)
so wine reports "no support" in d3dcaps :)
For pshader, wine support it.
Anyway it reports "no support" in d3dcaps if your hw (graphic card)
don't support it (as d3d do).
Seems you card (or driver) don't support it :)(see in glxinfo if you have
GL_ARB_fragment_program extension)
for format (20,D3DFMT_R8G8B8)/(71,D3DFMT_D32) it should be supported
can you put glxinfo output ?
Regards,
Raphael
--
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=3917
tony.lambregts(a)gmail.com 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=3915
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |source
--
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=3915
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://gimp-
| |win.sourceforge.net/
Keywords| |download
--
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=3900
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From vitaliy(a)kievinfo.com 2005-23-11 17:17 -------
The patch is in cvs.
--
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=3914
------- Additional Comments From vitaliy(a)kievinfo.com 2005-23-11 17:12 -------
What do you mean "missing"? Wine has it's own.
--
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=3918
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2005-23-11 17:01 -------
BTW I forgot to mention: as you approach the trees the brown rectangles around
them dissappear (so the bug is then gone). Also the sea can suddenly look normal
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.
http://bugs.winehq.org/show_bug.cgi?id=3918
Summary: Far Cry Demo: textures screwed up (opengl)
Product: Wine
Version: CVS
Platform: Other
URL: http://www.gamersnet.nl/demos/demo.php?id=490
OS/Version: Linux
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Hi, i try to run the Far Cry Demo. At the start of the game the trees on the
beach and the sea look really weird; see the attached screen shot.
A lot of these messages appear in the console:
BuildStripifyInfo: > 2 triangles on an edge... uncertain consequences
Unfortunately it takes quite some effort if you want to reproduce this bug:
I had to install the demo on a windows partition and copy it to the wine
directory as the installer didn't work.
The game doesn't run in directx mode so you have to apply this hack:
Open systemcfg.lua in c:\Program Files\Ubisoft\Crytek\Far Cry Demo and
replace r_driver = "Direct3D9" with r_driver = "OpenGL" Then you can start the game.
--
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=3913
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From tony.lambregts(a)gmail.com 2005-23-11 16:31 -------
*** This bug has been marked as a duplicate of 2925 ***
--
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=2925
------- Additional Comments From tony.lambregts(a)gmail.com 2005-23-11 16:31 -------
*** Bug 3913 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=3917
Summary: Rich Edit text box ignores WM_SETFONT (and ES_PASSWORD)
Product: Wine
Version: 0.9.1.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P4
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andrew7webb(a)comcast.net
fixme:richedit:RichEditANSIWndProc WM_SETFONT: stub
occurs when I try to set the font on a RichEdit control.
The iolib SmartWin++ test program tries different size fonts on RichEditBoxes,
and nothing happens.
HOW TO REPRODUCE THE PROBLEM AND CHECK THE FIX:
Fetch the latest SmartWin++ source using cvs with:
cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/smartwin login
cvs -d:pserver:anonymous@cvs.sourceforge.net:/cvsroot/smartwin checkout SmartWin
cd SmartWin/source
make -f Makefile.wine (And the libsmartwin.a library should be put into ../lib)
comment out the line containing LVSCW_AUTOSIZE_USEHEADER
in ../../include/io/html_get.h (Another Wine bug I think, but this report is
about RicheEditBoxes )
cd ../tests/iolib
make -f Makefile.wine run (And the sample program should start running.)
Use the File | Try InDialog menu command
Watch the fixmes appear in standard out.
Click OK until a font dialog appears, select some large font, and if everything
works well, then the dialog should use the font in the rich text edit boxes.
Also the ES_PASSWORD style has no effect, as can be seen when entering text in
the field labeled "Password:"
--
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=3907
andrew7webb(a)comcast.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From andrew7webb(a)comcast.net 2005-23-11 15:17 -------
I put the fix into my graphics.c, rebuilt and my program works now.
Thank you Rein.
--
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=3915
Summary: Win32 GTK apps are all black when run in WINE
Product: Wine
Version: 0.9
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pluby(a)sbcglobal.net
CC: pluby(a)sbcglobal.net
Product: Wine
Version: 0.9.1-winehq-3
Component: wine-gui
OS: Linux (reproduced on both Debian and Ubuntu)
Severity: major (if you need to run GTK apps, critical)
Summary: Win32 GTK apps are all black when run in WINE, almost no features of
the GUI are visible except buttons.
Description:
I noticed in cross-compiling my Linux GTK apps for Windows (Win32) users that
the apps look good in real Windows, but look almost entirely black when run in
Wine. I tried installing a Windows Classic theme in Wine, but all it did was
make the Progress Bars flash occasionally visible. [side note: the GTK apps I
tested all also required an unavailable Windows DLL, USP10.DLL]
Steps to Reproduce: I cross-compile, since I no longer have any Windows-based
development boxes. So I don't know if this also happens with GTK apps natively
compiled on a Win32 box. But regardless, my apps do look normal if you run them
in native windows; they only have this black-on-black problem when run in Linux
under WINE.
To reproduce, you'll need to install the standard GTK Win32 port that most
everyone uses for GIMP and GAIM, from here:
http://gimp-win.sourceforge.net/
(You may also need USP10.DLL as mentioned above too)
Then just run a GTK Win32 program in wine -- I could send you an executable if
that is easier, or you could cross-compile an official GTK Tutorial "Hello
World" program using these instructions:
https://sourceforge.net/docman/display_doc.php?docid=30849&group_id=149086
More info on this bug (in fact, the request from a poster that I post this here
as a bug) is in this comp.emulators.ms-windows.wine thread:
http://groups.google.com/group/comp.emulators.ms-windows.wine/msg/b67c09672…
There are a few thing sent out to stderr when I run the app:
@ubuntu:~/Programming/GTKCrossCompile_HelloWorld$ wine helloworld.exe
fixme:font:load_VDMX Failed to retrieve vTable
fixme:font:load_VDMX Failed to retrieve vTable
(helloworld.exe:8): Pango-WARNING **: Couldn't load font "MS Shell Dlg 8"
falling back to "Sans 8"
Beyond that, let me know if there is any more info I can provide.
Thanks!
--
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=3914
Summary: missing MSVCRT.DLL
Product: Wine
Version: 0.9.2.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jerome.bouat(a)wanadoo.fr
When installing Microsoft Flight Simulator 98 with the "Windows 98" emulated
version, MSVCRT.DLL is missing.
--
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=3913
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2005-23-11 14:39 -------
I used wine with default settings.
I then selected Windows 98 in winecfg and the install completed (although it
complained about a missing file "MSVCRT.DLL").
Running the game lead to segmentation fault.
--
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=3883
------- Additional Comments From imago(a)devinity.de 2005-23-11 14:13 -------
> err:module:import_dll Library ntoskrnl.exe (which is needed by L"C:\\Program
> Files\\MadOnion.com\\3DMark2001 SE\\PciBus.sys") not found
> err:module:import_dll Library HAL.dll (which is needed by L"C:\\Program
> Files\\MadOnion.com\\3DMark2001 SE\\PciBus.sys") not found
> err:module:LdrInitializeThunk Main exe initialization for L"C:\\Program
> Files\\MadOnion.com\\3DMark2001 SE\\PciBus.sys" failed, status c0000135
it's not _that_ easy to provide a stub implementation of ntoskrnl (I mean it's
not just another dll, its the windows kernel ;) )
but thx to all the guys working on the copy-protection stuff there probably will
be a ntoskrnl emulation in near future. hal.dll is exclusivly used by kernel
drivers, so it only makes sense to work on it if there is a ntoskrnl.But even if
all that stuff is in place, loading a device driver which does *whatever* on the
pci bus? I dunno if that could be emulated that easily in userspace under linux.
Maybe there should be some check in the CreateService/StartService code to
explicitly prevent any sort of kernel driver to be installed/loaded as it just
won't work anyways.
same probably goes for device drivers under Win9X/ME aka *.vxd files.
--
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=3666
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From marcus(a)jet.franken.de 2005-23-11 14:11 -------
we try to be SMP safe and usually are.
likely an amd64 related smp 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=2884
------- Additional Comments From kwhiskers(a)gmail.com 2005-23-11 13:49 -------
I should add that I am using Fedora Core 4 and wine 9.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.