http://bugs.winehq.org/show_bug.cgi?id=4871
ilan(a)fonz.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.10. |0.9.12.
------- Additional Comments From ilan(a)fonz.net 2006-24-04 10:37 -------
The bug appears to be resolved in 0.9.12, as the application now installs.
--
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=4842
ilan(a)fonz.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.9. |0.9.12.
------- Additional Comments From ilan(a)fonz.net 2006-24-04 10:33 -------
Confirmed in 0.9.12
--
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=5115
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
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=4408
------- Additional Comments From Peter.Bienstman(a)UGent.be 2006-24-04 07:12 -------
This patch solves the problem indeed!
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=4449
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-24-04 03:39 -------
No, isn't fixed. I think you have put a tahoma.ttf in ~/drive_c/windows/fonts.
>From a clean install Steam's text is still invisible. From comment #8:
>Wine really needs a Tahoma compatible freetype font. Anybody want to create
one?
I could givee it a shot, but how exactly could i do this? I just played around a
bit with fontforge and know a bit how it works now. However, should the font be
build from scratch, or could i just load the tahoma font into fontforge and draw
the glyphs over the existing fonts? And is that legal? Anyone has an exact "howto"?
--
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=5126
------- Additional Comments From nospam(a)thenerdshow.com 2006-24-04 03:38 -------
By the way, this bug can be worked around by simply commenting out the
assertion. And I can play the games. Bogus assertion? You tell me, after
applying this patch:
--- wine/dlls/comctl32/listview.c.orig 2006-04-23 22:33:38.000000000 -0800
+++ wine/dlls/comctl32/listview.c 2006-04-24 00:21:17.000000000 -0800
@@ -1949,7 +1950,7 @@
if (lpLVItem->iSubItem == 0)
{
State.left += REPORT_MARGINX;
- assert(lpLVItem->mask & LVIF_INDENT);
+ /* assert(lpLVItem->mask & LVIF_INDENT); */
State.left += infoPtr->iconSize.cx * lpLVItem->iIndent;
}
}
--
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=5128
nospam(a)thenerdshow.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=5128
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |conformance, 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=5128
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From nospam(a)thenerdshow.com 2006-24-04 02:42 -------
Oops. Not a duplicate of bug 5126. This assertion is in a different place.
The following patch fixes this bug but it does not fix bug 5126 so I am
reopening this. Please check this patch over. I am unfamiliar with the
codebase and as such may have hacked it a bit.
--- wine/dlls/comctl32/listview.c.orig 2006-04-23 22:33:38.000000000 -0800
+++ wine/dlls/comctl32/listview.c 2006-04-23 23:10:20.000000000 -0800
@@ -1350,6 +1350,7 @@
static COLUMN_INFO mainItem;
if (nSubItem == 0 && DPA_GetPtrCount(infoPtr->hdpaColumns) == 0) return
&mainItem;
+ if (nSubItem < 0) nSubItem = -nSubItem;
assert (nSubItem >= 0 && nSubItem < DPA_GetPtrCount(infoPtr->hdpaColumns));
return (COLUMN_INFO *)DPA_GetPtr(infoPtr->hdpaColumns, nSubItem);
}
--
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=5126
------- Additional Comments From nospam(a)thenerdshow.com 2006-24-04 02:38 -------
I downloaded http://vincent.grigorieff.free.fr/snes9x/snes9x-1.43-win32.zip and
tested it with wine CVS today. Confirmed:
listview.c:1952: LISTVIEW_GetItemMetrics: Assertion `lpLVItem->mask & 0x0010'
failed.
wine: Assertion failed at address 0xffffe405 (thread 0009), starting debugger...
Looks like a different bug though. Not a duplicate of 5128. Revising 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=5128
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From nospam(a)thenerdshow.com 2006-24-04 01:18 -------
Yes, dup. bug 5126 was too new to show up in search I guess.
*** This bug has been marked as a duplicate of 5126 ***
--
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=5126
nospam(a)thenerdshow.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |nospam(a)thenerdshow.com
------- Additional Comments From nospam(a)thenerdshow.com 2006-24-04 01:18 -------
*** Bug 5128 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=5099
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-23-04 22:24 -------
Isn't string "\\\\.\\D:" a name of device?
--
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=4975
------- Additional Comments From clintcan(a)yahoo.com 2006-23-04 22:14 -------
Thanks for the info, I'm quite excited that advpack will be mature enough to
install ie6 by then! Until then, this satisfies my question a lot. Thanks 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=5124
------- Additional Comments From Speeddymon(a)gmail.com 2006-23-04 21:51 -------
i meant glxinfo in my first request to run it.. not glxoinfo.. sorry
--
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=5124
------- Additional Comments From Speeddymon(a)gmail.com 2006-23-04 21:50 -------
Could you rerun glxinfo? the output doesn't look complete. According to what
is there though you are missing some essential opengl files.. perhaps try
downloading and compiling the latest opengl?
--
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=4975
------- Additional Comments From truiken(a)gmail.com 2006-23-04 21:26 -------
I sugges you wait a couple months at the most, because builtin advpack will be
implemented enough to install IE6 by that time. I understand the annoyance of
not being able to install IE, but this specific problem is caused because the
user is using native dlls, and in that circumstance, this isn't a bug in Wine.
A workaround is provided, and if a user is intelligent enough to install IE
using the manual install, then he can read the directions to remove those
builtin dlls for the time being. I'm assuming that sidenet/winetools, etc, will
already provide the workaround.
--
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=4975
------- Additional Comments From vitaliy(a)kievinfo.com 2006-23-04 21:25 -------
It's invalid because Wine already does have almost working replacement for IE.
So your assert that you need IE is invalid.
--
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=4975
------- Additional Comments From clintcan(a)yahoo.com 2006-23-04 21:14 -------
Hi James,
What do you suggest about this invalid "bug"? It is a big annoyance, especially
with the recommended manual install howto using ie6_overrides.reg.
Most people, like me use ie6 to make some programs run (macromedia studio
products requires ie6).
Many people do not have the knowhow to do this change in wine.inf. It might be
that using builtin dlls doesn't have this bug, but ie6 won't install without
using native dlls.
It would be better if there would be a patch thst would detect if a certain
program installs dlls that would conflict with the fake ones and adjust
accordingly by letting the program use the native dlls instead of the fake ones.
Even marking the dlls as native,builtin doesn't work because wine overrides the
native dlls with the fake ones, as I understand it (causing those dll is
corrupted errors).
--
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=5071
dmoufarrege(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|0.9.11. |0.9.12.
--
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=5098
------- Additional Comments From marc.w(a)smlintl.com.au 2006-23-04 20:53 -------
I should clarify its not an install as such it is copied from a windows partition.
A standard install fails with no flash player as I have posted in a previous
thread then goes through to entering the numbers.
--
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=5098
------- Additional Comments From marc.w(a)smlintl.com.au 2006-23-04 20:40 -------
dotnetfx1.1.exe installs fine provided you have IE installed and a few other
bits and pieces.
What I have tried to do is get the program working I'm sorry my want to get
Quickbooks installed is met with much criticism.
I will attach with a standard install what errors. This is a default .wine
setup with nothing installed.
Relating to the Mozcontrol the one downloaded by wine causes issues which has
been reported in other bugs. That is why I have another version.
--
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=5118
------- Additional Comments From mccpat(a)gmail.com 2006-23-04 20:36 -------
I already did; however, I don't think this problem is program-dependent (unless
it uses a different open-file-dialog API call); rather, it has to do with all
programs that use the same API call, which I'm sure there are many of.
--
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
------- Additional Comments From philip(a)digitalinfinity.biz 2006-23-04 20:09 -------
Well This is potentially a work around. But the question is how will it effect
performance on the rendering pipeline of an accelerated card. Wine is close to
windows performance when it comes to games.
Is there a way to determine between a MDI type interface and a regular window so
that they are not always rendering to pixmaps and then transposing them on to
the screen? We want to fix the problem not create a performance issue. So I
think some input on this would be helpful.
--
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=4975
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From truiken(a)gmail.com 2006-23-04 20:06 -------
This bug is invalid, because the error only occurrs when using native dlls.
Using all builtin dlls, this problem does not happen.
--
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=4975
truiken(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|FIXED |
------- Additional Comments From truiken(a)gmail.com 2006-23-04 20:03 -------
Reopening, the patch hasn't been (won't be) committed.
--
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=4975
clintcan(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From clintcan(a)yahoo.com 2006-23-04 19:48 -------
I confirm the offending code. IE6 installs successfully when you delete the
following in wine.inf (this is related to the fake dlls):
[FakeDllsSection]
shlwapi.dll
winhlp32.exe,winhelp.exe
crypt32.dll
--
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=5126
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Wine does expose internal |snes9x Open File dialog
|structures to applications |causes assert failure
|via ListView_GetItemT |
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5121
------- Additional Comments From mike(a)codeweavers.com 2006-23-04 19:34 -------
Hi Fatih,
Could you please make sure that a current version of FontForge is installed on
your computer when you compile Wine, and if that doesn't fix the problem, please
provide a small test application showing the problem to make it easier for
somebody to debug.
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=5127
Summary: Half Life and HL:S games freeze a lot until you press
Ctrl+Alt+Esc
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ryanbach(a)adelphia.net
In Steam based games (HL & Source) when I run apps it freezes occationaly (on
random) and I must press Ctrl+Alt+Esc (sometimes I have to hold it) twice for
the game to stop freezing. I am not sure but I think if you don't press those
keys that it will freeze for all eternity. (I just don't have that much time to
wait ;))
I know this is a recent bug because it wasn't around until one of the later
0.9.9+ (?) Wine 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=4370
------- Additional Comments From cdunn42(a)yahoo.com 2006-23-04 19:01 -------
Ok - put in this fixme right before the if statement :
FIXME("rgvt[i]=0x%04X\n", rgvt[i]);
Here was the output :
fixme:ole:ITypeInfo_fnInvoke rgvt[i]=0x0008
fixme:ole:ITypeInfo_fnInvoke rgvt[i]=0x400C
err:ole:ITypeInfo_fnInvoke failed to convert param 1 to VT_VARIANT|VT_BYREF from
VT_VARIANT|VT_BYREF
So if VT_VARIANT is not a bitmask, but VT_BYREF is (as I see it is used in that
context further down in the code and is defined as 0x4000), would the correct
solution maybe be to mask out VT_BYREF like this? (which by the way also
succeeds in correcting my problem) :
if ((rgvt[i] & ~VT_BYREF) == VT_VARIANT)
VariantCopy(&rgvarg[i], src_arg);
--
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=4235
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.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=5099
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From vitaliy(a)kievinfo.com 2006-23-04 15:21 -------
Nah. I'm sure that it's openening device (as indicated by traces). It just won't
work on file or any other but device handle.
All you can do is to try and open device on native and do "FSCTL_LOCK_VOLUME".
See what happens. I would like to see if that will ever suceed on anything,
including CD-ROM.
--
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=5124
------- Additional Comments From fojtik(a)penguin.cz 2006-23-04 14:52 -------
Dear Tom,
I don't have glxoinfo. I have found glxinfo only.
glxinfo >glxinfo.log don't work, because output is written to stderr.
glxinfo &>glxinfo.log :-))
May be that this attached file might be usefull for you.
I have never test patches, I will attempt to do 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=5126
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.snes9x.com/downlo
| |ads.php
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=5126
Summary: Wine does expose internal structures to applications via
ListView_GetItemT
Product: Wine
Version: 0.9.11.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-winelib
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bugs(a)fabian-franz.de
Buggy application is snes9x, affected file is listview.c.
It does change the item.mask in the GETDISPINFO request, which later leads to a
failed assertion (as LVIF_INDENT is no longer set).
This is for sure an application bug, but GetItemT is stated to be internal and
such avoids copying. This is fine, but whenever data is exchanged with
applications wine should copy only those data that the application is allowed to
actually change. Else applications could do whatever they want with the internal
data structures, which for sure is not wanted and leads to side effects as
described above.
To reproduce the bug:
- Download snes9x
- Go to the "Open file" dialog -> assertion
Just wanted to report 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=4488
------- Additional Comments From makomk(a)lycos.co.uk 2006-23-04 13:32 -------
Seems to be a null pointer dereference in
src/winsup/cygwin/uinfo.cc:internal_getlogin().
Specifically, it looks to be due to NetUserGetInfo(NULL, wuser, 3, (LPBYTE
*)&ui) - as the last FIXME before the exception states, this is not
implemented by Wine, however it returns success anyway. Because of this, MSYS
attempts to do:
sys_wcstombs (buf, ui->usri3_home_dir, MAX_PATH);
where ui is still a NULL pointer (since NetUserGetInfo hasn't initialised it
to anything). As you might expect, this crashes the program. I'm not sure why
NetUserGetInfo returns success in this case; seems very odd.
Incidentally, the code in question appears to be run only on NT-type systems,
which might be why Dan Kegel has tried MSYS and hasn't encountered this bug
(http://www.winehq.org/pipermail/wine-devel/2006-March/045688.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=5124
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From Speeddymon(a)gmail.com 2006-23-04 13:13 -------
glxinfo should tell you. Just do
glxoinfo > glxinfo.log
And attach that file here.
Although if this happened since wine 0.9.10, would you mind doing a regression
test to see which patch caused it?
See http://winehq.org/site/docs/winedev-guide/x1348 for how to do 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=5099
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-23-04 13:07 -------
| looks like device 9 is really my cd device
Not exactly, Bernd. "device=9" refers to the device type (that is to
FILE_DEVICE_FILE_SYSTEM) based on which FSCTL_[UN]LOCK_VOLUME consts are
defined. And the actual reference is a handle to the "\\.\D:" (0xd8) :
| 0009:trace:file:CreateFileW L"\\\\.\\D:" GENERIC_READ FILE_SHARE_READ
| FILE_SHARE_WRITE creation 3 attributes 0x0
...
| 0009:trace:file:CreateFileW returning 0xd8
| 0009:trace:ntdll:NtFsControlFile
| 0xd8,(nil),(nil),(nil),0x7fbbee44,0x00090018,(nil),0x00000000,(nil),0x00...)
| 0009:fixme:ntdll:NtFsControlFile Unsupported fsctl 90018 (device=9 access=0
| func=6 method=0)
|
| /dev/hdc is my cd device
Fine. Now it would be nice to run some test on real Windows:
handleC = CreateFileW("\\.\C:", ...);
handleD = CreateFileW("\\.\D:", ...);
NtQueryObject(handleC, Object...Information , ...);
NtQueryObject(handleD, Object[Type|Name]Information, &ObjectInformation, ...);
/* Then print some fields of the returned ObjectInformation struct ... */
/* so we could see the difference between handles to C: and to D: */
res = NtFsControlFile(handleD, FSCTL_LOCK_VOLUME, ...);
IMHO, this could be a start for additional ntdll-tests. Vitaliy, what do you think?
--
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=5112
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Explorer (wine builtin) just|wine's explorer dies
|exits when run with no |silently when run w/no
|command line args |command line args
------- Additional Comments From Speeddymon(a)gmail.com 2006-23-04 13:04 -------
Well then wouldnt that be a silent death since it doesn't even bring up the
window ;-)
--
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=5124
------- Additional Comments From fojtik(a)penguin.cz 2006-23-04 12:49 -------
glu.h claims that it has been derived from OpenGL1.2.1 but I am unsure, whether
this is signifficant.
--
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=5124
------- Additional Comments From fojtik(a)penguin.cz 2006-23-04 12:43 -------
How to detect OpenGL version?
Sorry for overlooking your response.
--
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=5124
------- Additional Comments From fojtik(a)penguin.cz 2006-23-04 12:39 -------
I tested older wine releases. 0.9.9 compiles fine, this problem has been
introduced in 0.9.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=5125
Summary: CheckPoint Firewall-1 ("FW-1") GUI management client
("SmartConsole") doesn't run (demo mode)
Product: Wine
Version: unspecified
Platform: Other
URL: http://www.checkpoint.com/form/download/SmartConsole_R60
_591000654_1_Win.zip
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: molle.bestefich(a)gmail.com
Tested using:
* Wine GIT version 738be2eec38674e2b37b6fd22c030692c6f74088
* Check Point SmartConsole version R60 591000654_1_Win
Installation
============
1) Installation initiated by user
err:ole:marshal_object object doesn't expose interface
{be6115a1-7de5-48dc-ad2a-25060e00fce2}, failing with error 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
2) Installation done
err:ole:marshal_object object doesn't expose interface
{be6115a1-7de5-48dc-ad2a-25060e00fce2}, failing with error 0x80004002
err:ole:ClientIdentity_QueryMultipleInterfaces IRemUnknown_RemQueryInterface
failed with error 0x80004002
3) Installer (type is InstallShield) aborts
Dialog box: "0x80040703 / Failed to find DLL function: system.CPsystem /
Setup will now terminate."
4) User clicks OK, installer erases installed files and emit a few more error
messages
err:ole:dispatch_rpc no apartment found for ipid
{ffffffff-ffff-ffff-0f00-00000a000000}
err:rpc:I_RpcReceive we got fault packet with status 6be
err:ole:dispatch_rpc no apartment found for ipid
{ffffffff-ffff-ffff-0f00-00000a000000}
err:rpc:I_RpcReceive we got fault packet with status 6be
The OLE errors should be fixed to prevent the installer from deleting the
installation instead of finishing.
Running GUI tools in Demo mode
==============================
1) Startup
err:imagelist:ImageList_ReplaceIcon no color!
2) Select 'Demo Mode' and click OK
Failed to initialize database manager with error 0x80004005 ('Unspecified
error')
Dialog box: "The connection has been refused because the database could not
be opened."
I'm stuck here, I don't know how to debug further.
Running CPML
============
There's an executable "cpml.exe". Running "strings cpml.exe" gives:
Usage:
cpml [-d]
cpml vdb -b database_name [-t table_name] [-v]
If you run "wine cpml.exe", you'll get:
cpml is running
The cpml application does not quit.
Try "lsof | grep -E 'cpml\.exe.*TCP|^COMMAND'" or "netstat -ap | grep -E
'cpml\.exe|^Active|^Proto'":
cpml.exe TCP LISTEN localhost:18270
cpml.exe TCP ESTABLISHED localhost:32796 -> localhost:48288
cpml.exe TCP ESTABLISHED localhost:48288 -> localhost:32796
I had hoped that cpml would fix Demo mode, but it doesn't.
It seems to have nothing to do with running in Demo mode.
--
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=5122
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From tony.lambregts(a)gmail.com 2006-23-04 12:15 -------
this is a duplicate of bug 201
*** This bug has been marked as a duplicate of 201 ***
--
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=5112
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Explorer (wine builtin) |Explorer (wine builtin) just
|fails when run with no |exits when run with no
|command line args |command line args
------- Additional Comments From vitaliy(a)kievinfo.com 2006-23-04 12:02 -------
Well it does not fail - it just doesn't do anything.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5091
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-23-04 11:44 -------
The link was in a comment and we cannot edit (only delete) comments. I do not
see that changing at all. The corrected link had been ported as a comment. I
moved the corrected comment to a howto and deleted both of the comments.
--
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=4975
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-23-04 11:42 -------
Well, I did some testing using "git bisect" and found the offending patch, I hope:
http://source.winehq.org/git/?p=wine.git;a=commit;h=d404fb5bf84206b5990516e…
Then I did some commenting out on the lines of [FakeDllsSection]. Looks like
only 3 fake binaries make installation noisy:
--- a/tools/wine.inf
+++ b/tools/wine.inf
@@ -2109,12 +2109,12 @@
10,,rundll32.exe
10,,winebrowser.exe
10,,winhelp.exe
-10,,winhlp32.exe,winhelp.exe
+;10,,winhlp32.exe,winhelp.exe
10,command,start.exe
11,,advapi32.dll
11,,comdlg32.dll
11,,control.exe
-11,,crypt32.dll
+;11,,crypt32.dll
11,,dbghelp.dll
11,,ddraw.dll
11,,gdi32.dll
@@ -2133,7 +2133,7 @@
11,,shdocvw.dll
11,,shell32.dll
11,,shfolder.dll
-11,,shlwapi.dll
+;11,,shlwapi.dll
11,,user32.dll
11,,version.dll
11,,wcmd.exe
Fake shlwapi.dll makes 2 msgboxes to popup (telling about SHDOCVW.DLL errors).
Fake crypt32.dll brings up 3 additional msgboxes (describing INITPKI.DLL,
CRYPTDLG.DLL errors).
Fake winhlp32.exe/winhelp.exe gives us ~17 more msgboxes (mentioning
BROWSEUI.DLL, MSRATING.DLL, HLINK.DLL, PLUGIN.OCX, SENDMAIL.DLL, MSHTMLED.DLL,
SHDOC401.DLL, PROCTEXE.OCX, MSTIME.DLL, DXTRANS.DLL, DXTMSFT.DLL, JSCRIPT.DLL,
INITPKI.DLL, DIGEST.DLL) and only it seems to be fatal to the installation process.
Applying my micro-patch and reinstalling Wine leaves us with the only msgbox
about IE5INFO.OCX which comes from very distant past, I believe. It requires
MFC40.DLL which Wine doesn't provide.
HTH some guys...
--
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=4561
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |tony.lambregts(a)gmail.com
Status|RESOLVED |UNCONFIRMED
Resolution|DUPLICATE |
------- Additional Comments From Speeddymon(a)gmail.com 2006-23-04 11:17 -------
its not a dupe of 4051.. it may be a dupe of somethin else but I dont know
what. tony?
--
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=4935
jerome.bouat(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #2140 is|0 |1
obsolete| |
Attachment #2185 is|0 |1
obsolete| |
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2006-23-04 11:17 -------
Created an attachment (id=2331)
--> (http://bugs.winehq.org/attachment.cgi?id=2331&action=view)
log of the crash with 0.9.12 wine version
--
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
------- Additional Comments From willie(a)froq.net 2006-23-04 11:07 -------
OpenGL can draw to either a X window, a GLX pixmap, or a Pbuffer. GLX pixmaps
and Pbuffers are offscreen. See "Course 24: OpenGL and Window System
Integration, Siggraph 1997":
http://www.mesa3d.org/brianp/sig97/glxport.htm#Pixmaps
And:
http://techpubs.sgi.com/library/tpl/cgi-bin/getdoc.cgi?coll=0650&db=man&fna…
I have no idea if this helps, though. According to the linked article, direct
rendering is usually not available for GLX pixmaps (but the article is quite
old, so this might have changed). No idea about Pbuffers. It is possible to
copy the content of the pixmap anywhere you want, though, as far as I
understood the docs.
--
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=5112
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Explorer (wine builtin) |Explorer (wine builtin)
|fails when window_metrics |fails when run with no
|are tweaked |command line args
------- Additional Comments From Speeddymon(a)gmail.com 2006-23-04 10:52 -------
Correcting summary to reflect the real problem. This should really be fixed
though, so that users in windows land can transition easier. Posting a note to
wine-devel
--
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=3288
------- Additional Comments From lxtanner(a)yahoo.co.uk 2006-23-04 10:29 -------
Please delete comment 5 to clean up this bug, then resume testing.
--
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=5124
Summary: Cannot compile wine 0.9.12 - gluNewTess is missing
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fojtik(a)penguin.cz
Do you have any idea what goes wrong? I am using gcc-3.2
make[2]: Entering directory `/I/usr/src/wine-0.9.12/dlls/opengl32'
../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./opengl32.spec
opengl_ext.o opengl_norm.o wgl.o wgl_ext.o version.res
-Wl,--rpath,\$ORIGIN/`../../tools/relpath /usr/local/lib/wine /usr/local/lib` -o
opengl32.dll.so -L../../dlls -luser32 -lgdi32 -ladvapi32 -lkernel32 -lntdll
-L../../libs -lwine -L/usr/X11R6/lib -lSM -lICE -lXxf86dga -lXxf86vm -lXext
-lX11 -lGL -L../../libs/port -lwine_port
wgl.o: In function `wglUseFontOutlines_common':
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:930: undefined reference to `gluNewTess'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:933: undefined reference to
`gluTessCallback'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:934: undefined reference to
`gluTessCallback'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:935: undefined reference to
`gluTessCallback'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:992: undefined reference to
`gluTessBeginPolygon'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:999: undefined reference to
`gluTessBeginContour'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:1002: undefined reference to
`gluTessVertex'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:1029: undefined reference to
`gluTessVertex'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:1032: undefined reference to
`gluTessVertex'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:1045: undefined reference to
`gluTessEndContour'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:1050: undefined reference to
`gluTessEndPolygon'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:1059: undefined reference to
`gluDeleteTess'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:1038: undefined reference to
`gluTessEndContour'
/usr/src/wine-0.9.12/dlls/opengl32/wgl.c:1016: undefined reference to
`gluTessVertex'
collect2: ld returned 1 exit status
winegcc: gcc failed.
make[2]: *** [opengl32.dll.so] Error 2
make[2]: Leaving directory `/I/usr/src/wine-0.9.12/dlls/opengl32'
make[1]: *** [opengl32] Error 2
make[1]: Leaving directory `/I/usr/src/wine-0.9.12/dlls'
make: *** [dlls] Error 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=5123
------- Additional Comments From t.artem(a)mailcity.com 2006-23-04 10:17 -------
Created an attachment (id=2330)
--> (http://bugs.winehq.org/attachment.cgi?id=2330&action=view)
This is how application looks like with ru_RU.UTF-8 locale
Note:
1) system locale is set to en_US.UTF-8
2) MS Core TTF fonts are installed
3) Some Unicode TTF fonts are installed (for Chinese, Korean and Japanese
texts)
--
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
------- Additional Comments From philip(a)digitalinfinity.biz 2006-23-04 10:13 -------
Question for you. Can libGL draw on drawable types in X or is it just an XWindow
it can draw on. I mean there are other drawable types, off screen types, that
the drawing functions in X can draw on. If libGL allows you to draw on those
then you can just have the functions draw on the drawable and then transpose the
drawable on the Wine window. Although this will probably hurt performance more
then help it. Your probably better off with a proxy object that acts like a
wine window but is an X Window.
I must admit I do need to learn more about the windows MDI functionality for me
to be of further assistance on this. I have no idea how the MDI GL windows work
in windows to offer any further ideas.
--
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=5123
Summary: Wrong fonts are shown
Product: Wine
Version: CVS
Platform: PC
URL: ftp://pi.super-computing.org/windows/super_pi.zip
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: t.artem(a)mailcity.com
In Wine 0.9.12 when locale is set to en_US.UTF-8 "About" and "Calculate"
application windows are unreadable because wrong fonts are used.
When I set locale to ru_RU.UTF-8 everything is OK.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5119
moveek(a)verizon.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From moveek(a)verizon.net 2006-23-04 09:59 -------
Ah understood. Apologies for raising a false alarm.
--
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=4561
------- Additional Comments From chris.bainbridge(a)gmail.com 2006-23-04 09:40 -------
fglrx is a binary module from ATI.
ATI claim that wine is at fault "for not preserving the TLS state that the ATI
driver has already claimed".
Maybe the wine developers can comment on that claim?
--
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=4561
------- Additional Comments From hurtta+wine2(a)leija.mh.fmi.fi 2006-23-04 08:21 -------
> I tried to run valgrind on winecfg and got a kernel crash.
If kernel crashed, that can not be wine bug. It perhaps can
be preported on http://bugme.osdl.org/
But if fglrx is binary module without source, then bug is not accepted.
( bug 4051 is "winecfg crashes when clicking on Audio tab due to arts bugs"
how this can be 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=5122
Summary: black backgrounds of bmp pieces on igowin
Product: Wine
Version: 20050310
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: davidrichfield(a)gmail.com
The program "igowin.exe" (www.smart-games.com/igowin.html) has transparent
backgrounds for pieces under windows, but black backgrounds under wine (a
variety of versions of windows and wine tested).
--
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=2632
fasici(a)linux-sevenler.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From fasici(a)linux-sevenler.org 2006-23-04 06:11 -------
this was 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=5121
Summary: QClxListview font problem
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi-(printing)
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: fasici(a)linux-sevenler.org
I have a problem with a program using qtintf library. The texts in the lists
don't appear.
I am using wine version 0.9.12
--
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=5099
------- Additional Comments From b.buschinski(a)web.de 2006-23-04 03:37 -------
Created an attachment (id=2327)
--> (http://bugs.winehq.org/attachment.cgi?id=2327&action=view)
+file,+ntdll,+tid,+process
looks like device 9 is really my cd device
0009:trace:file:get_dos_device L"D:" -> "/dev/hdc"
0009:trace:file:CreateFileW returning 0xd8
0009:trace:ntdll:NtFsControlFile
(0xd8,(nil),(nil),(nil),0x7fbbee44,0x00090018,(nil),0x00000000,(nil),0x00000000)
0009:fixme:ntdll:NtFsControlFile Unsupported fsctl 90018 (device=9 access=0
func=6 method=0)
/dev/hdc is my cd device
--
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=5099
b.buschinski(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
OS/Version|other |Linux
Platform|Other |PC-x86-64
--
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=5099
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-23-04 01:44 -------
BTW, Bernd, can you attach +file,+ntdll,+tid,+process trace from unpatched Wine
run to this bugreport? Maybe this will reveal an object the game is trying to
open...
--
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=5120
------- Additional Comments From mike(a)codeweavers.com 2006-23-04 01:03 -------
I didn't say it was a solution, I said it should work if you use "click to
focus" (ie. a workaround).
On the other hand, I don't expect this bug to be solved any time soon.
--
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=5120
------- Additional Comments From madewokherd(a)gmail.com 2006-23-04 00:57 -------
That's not a solution. "focus follows mouse" is available on windows, so it
should be usable in 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=5089
------- Additional Comments From vitaliy(a)kievinfo.com 2006-23-04 00:49 -------
I can't reproduce this. Could you get unstripped Wine and reattach crash
backtrace? (you can check if Wine is stripped or not with 'file' program)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5120
------- Additional Comments From mike(a)codeweavers.com 2006-23-04 00:27 -------
You should use "click to focus", not "focus follows mouse", then it will work 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=5091
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Component|misc-web |website-bugs
Ever Confirmed| |1
Product|WineHQ.com |WineHQ Apps Database
------- Additional Comments From vitaliy(a)kievinfo.com 2006-22-04 23:14 -------
Any super-maintaner that want to look at?
--
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=5099
------- Additional Comments From vitaliy(a)kievinfo.com 2006-22-04 23:09 -------
You can send the patch to wine-devel and see what happens.
BTW please update hardware and OS description.
--
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=5111
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From vitaliy(a)kievinfo.com 2006-22-04 23:02 -------
Duplicate then
*** This bug has been marked as a duplicate of 4998 ***
--
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=4998
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |jeremielapuree(a)yahoo.fr
------- Additional Comments From vitaliy(a)kievinfo.com 2006-22-04 23:02 -------
*** Bug 5111 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=5112
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From vitaliy(a)kievinfo.com 2006-22-04 23:01 -------
As noted this is intended behavior.
--
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=5120
Summary: menu closes on mouseover
Product: Wine
Version: 0.9.9.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: andy(a)pepperell.net
When the "focus mode" attribute is set to "mouse" in metacity, moving the mouse
over an open menu (such as File, or Edit) causes the menu to close. As if the
mouseover clicked underneath the menu. Not sure if this applies to any
application . Was tested on mIRC
--
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=5119
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2006-22-04 22:26 -------
Both places are correct <g>
HKCU\Environment - is "per user" settings.
HKLM\System\CurrentControlSet\Control\SessionManager\Environment - is "system wide".
Of course on Wine it's the same. But they work the same as on windows - user's
settings override system defaults. So in the case of PATH manual is 100% correct
- you need to set that for user not system.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5118
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://flatassembler.net/
Keywords| |download, NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2006-22-04 21:29 -------
please add an entry for this program in the AppDB http://appdb.winehq.org/
--
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=5116
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|website-bugs |wine-binary
Product|WineHQ Apps Database |Wine
Version|unspecified |0.9.6.
------- Additional Comments From tony.lambregts(a)gmail.com 2006-22-04 21:20 -------
Not A website 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=5119
Summary: Error in documentation: Location of "Environment" key in
registry.
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: trivial
Priority: P5
Component: wine-documentation
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: moveek(a)verizon.net
In the Wine User Guide: "4.7. Setting Windows/DOS environment variables" (link
follows)
http://www.winehq.com/site/docs/wineusr-guide/environment-variables
The guide says to go to the
HKEY_CURRENT_USER/Environment
key. It seems this key is now located at the following place in the registry:
HKEY_LOCAL_MACHINE\System\CurrentControlSet\Control\SessionManager\Environment
--
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=5085
djr1952(a)hotpop.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |ABANDONED
------- Additional Comments From djr1952(a)hotpop.com 2006-22-04 19:13 -------
The problem with installing "thirdparty/mdac28/dasetup.exe" could of possible be
related to the "BLAST a bunch of file out and REPLACE the register" method used
"ie4linux" to {supposely} install ie6.
This may or may not result in a working IE6.0 as long as it's used by itself
only, but it isn't properly installed as far as other installer detect it.
Please excuse and waste of time I caused..
Note I'm currently trying "wine 0.9.12" with a different method of attack.
-- DonJr ...
--
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=5118
Summary: Changing "file type" with scroller does not register
Product: Wine
Version: 0.9.12.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mccpat(a)gmail.com
I used FASMW (http://flatassembler.net, Win32 version) with this example.
If the file filter is changed by using the mouse scroll wheel, without opening
the drop-down box, the open file dialog does not redisplay the files with the
new filter. However, if you change the file filter by clicking your mouse
(including dropping the filter box down) on a different filter, it will.
--
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=3466
jacek(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |jacek(a)codeweavers.com
Status|REOPENED |NEW
--
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=5117
Summary: empires2.exe
Product: Wine
Version: 0.9.11.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-dplay
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ikrabbe.ask(a)web.de
Just testing my wine with empires2.exe (compiled with gentoo linux, wine
version 0.9.11)
There seems to be a sound buffer underrun and the game will react quite slowly
to any input (mouse), though it generally runs.
Following error messages are reported on startup:
err:dplay:DP_IF_InitializeConnection Unable to load service provider
err:dplay:DirectPlayCreate Failed to Initialize SP: DPERR_UNAVAILABLE
err:dplay:DP_IF_InitializeConnection Unable to load service provider
err:dplay:DirectPlayCreate Failed to Initialize SP: DPERR_UNAVAILABLE
err:dplay:DP_IF_InitializeConnection Unable to load service provider
err:dplay:DirectPlayCreate Failed to Initialize SP: DPERR_UNAVAILABLE
err:dplay:DP_IF_InitializeConnection Unable to load service provider
err:dplay:DirectPlayCreate Failed to Initialize SP: DPERR_UNAVAILABLE
--
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=5040
------- Additional Comments From dank(a)kegel.com 2006-22-04 16:37 -------
That date format demo works fine with the latest Sun JRE,
but dies (with a truncated class error) with the JRE
on the MathWorks CD-ROM. Hmm, maybe I'll try replacing
Mrs. Olson's JRE with Folger's Crystals, and see if she notices...
--
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=5040
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From dank(a)kegel.com 2006-22-04 15:23 -------
I can repeat this running the setup.exe on a cd marked "Mathworks_R14_1"
and wine 0.9.12 or so. The exact error is
java.lang.ArrayIndexOutOfBoundsException: 0
at sun.util.calendar.ZoneInfoFile.createZoneInfo(Unknown Source)
at sun.util.calendar.ZoneInfoFile.getZoneInfo(Unknown Source)
at sun.util.calendar.ZoneInfo.getTimeZone(Unknown Source)
at java.util.TimeZone.getTimeZone(Unknown Source)
at java.util.TimeZone.setDefaultZone(Unknown Source)
at java.util.TimeZone.getDefault(Unknown Source)
at java.text.SimpleDateFormat.initialize(Unknown Source)
at java.text.SimpleDateFormat.<init>(Unknown Source)
at java.text.SimpleDateFormat.<init>(Unknown Source)
at com.mathworks.installer.util.debugLevelZero(util.java:1432)
...
The same array-out-of-bounds problem has been reported before; see
http://www.winehq.com/pipermail/wine-users/2006-January/020203.html
Hmm. A demo for that class is online at
http://java.sun.com/docs/books/tutorial/i18n/format/simpleDateFormat.html
Maybe I'll go try that...
--
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=4323
------- Additional Comments From hans(a)it.vu.nl 2006-22-04 14:36 -------
Created an attachment (id=2326)
--> (http://bugs.winehq.org/attachment.cgi?id=2326&action=view)
Implementation of DnsQueryConfig
I am working on implementing dnsapi. Here's a patch that
partly implements DnsQueryConfig that may help you. Can you
give it a try and report back here?
It is probable that another unimplemented API is called after
this 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=5112
------- Additional Comments From nospam(a)thenerdshow.com 2006-22-04 13:47 -------
Yeah window metrics doesn't matter. It was the (lack of) command line
arguments. It always fails when you don't supply an argument. I realize now
that you shouldn't run wine explorer but should use winefile instead. It's just
one of those unexpected behaviors that baffles people who are used to windows.
--
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=4323
------- Additional Comments From scott(a)open-vote.org 2006-22-04 13:42 -------
This bug is now making eMule crash very promptly after connecting to a server:
wine: Call from 0x7fca1600 to unimplemented function dnsapi.dll.DnsQueryConfig,
aborting
Seems worthy of simple stubbing.
--
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=5083
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From dank(a)kegel.com 2006-22-04 13:26 -------
It's screwed up in a couple ways:
1) It's copying from the wrong directory. This is a dup of bug 4251.
2) It looks like it's trying to copy a directory instead of
a file; this is a red herring, and will go away once #1 is fixed.
3) It's complaining about an unknown media type; a trivial patch
seems to fix that. I'll post that to wine-patches.
*** This bug has been marked as a duplicate of 4251 ***
--
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=5116
Summary: Printproblem in Lotus Notes 6.5.4 with truetype fonts
and german umlaut's
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: torsten.schulle(a)ksk-stendal.de
Hi, i use the wine version 0.9.6 with Lotus Notes 6.5.4. I have a problem if i
print from Notes with truetype fonts. The german umlaut ae, oe and ue printed
with a gap between the sign's (like "sch ön"). The problem appears with all
TTF's from Windows's (like arial). The standard fonts from Suse 10.0 printed
perfectly. I test it through wine-0.9.9, the proble is the same.
Best regard's
Torsten
--
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=4733
------- Additional Comments From Speeddymon(a)gmail.com 2006-22-04 12:37 -------
I figured it wouldn't but it was worth a shot.
--
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=5111
------- Additional Comments From jeremielapuree(a)yahoo.fr 2006-22-04 12:11 -------
I tried the Stephan Dosinger's patch from his site. Great news: it works!!!
So, we have to wait for the merging of this patch now.....
Joaopa
--
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=5111
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download, 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=5102
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2006-22-04 11:41 -------
please add An entry for this program in the AppDB http://appdb.winehq.org/
--
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=5115
Summary: Editing inline lines in BeyondCompare2 broken again
Product: Wine
Version: 0.9.12.
Platform: All
URL: http://scootersoftware.com/download.php
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wine-bugzilla(a)thequod.de
After updating to 0.9.12 (debian package from winehq), the inline editing in
the file view window (pressing F2/ENTER on a line) is broken again.
It has been fixed some versions ago.
AFAIK it's broken a bit different now: when pressing F2 or ENTER the focus
goes to the line to be edited and you are able to type into it, BUT: the text
that was already in that line disappears/gets blank.
--
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=4701
------- Additional Comments From lav(a)etersoft.ru 2006-22-04 11:12 -------
Really, WINE can use first in alphabetical order font from fonts dir instead
ttf MS Shell Dlg
--
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=3857
------- Additional Comments From dank(a)kegel.com 2006-22-04 11:11 -------
It looks like progress has been made. The installer still
fails, but the errors are much fewer. Here they are:
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"ValidateProductID"
fixme:msi:ACTION_HandleStandardAction unhandled standard action L"SetODBCFolders"
fixme:msi:ACTION_HandleStandardAction unhandled standard action
L"RemoveExistingProducts"
fixme:msi:ACTION_CustomAction msidbCustomActionTypeNoImpersonate not handled
fixme:msi:ACTION_CustomAction msidbCustomActionTypeNoImpersonate not handled
fixme:msi:ACTION_CustomAction msidbCustomActionTypeNoImpersonate not handled
err:msi:ITERATE_Actions Execution halted, action L"InstallFinalize" returned 1603
err:msi:ITERATE_Actions Execution halted, action L"ExecuteAction" returned 1603
fixme:msi:msi_dialog_set_control_condition Unhandled action L"Default"
fixme:msi:msi_dialog_set_control_condition Unhandled action L"Default"
And it still seems to hang.
--
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=5104
------- Additional Comments From dank(a)kegel.com 2006-22-04 10:54 -------
Since the stack seemed to implicate wininet,
and the valgrind log seemed to implicate thread exit,
and http://www.winehq.org/pipermail/wine-cvs/2006-April/022380.html,
the only patch in the range April 16 to 20 involving wininet,
happened to also implicate thread exit, I tried reverting it.
This let me download a file normally.
I'm going to email the author of that patch and ask him
to check 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=5114
Summary: suggesting more descriptive desktop window titles
Product: Wine
Version: 0.9.12.
Platform: All
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: christian(a)authmann.de
With Wine 0.9.10 I've been using three different WINEPREFIX'es for three
different wine desktops, each holding its own application (just one each). The
Window title was set by wine to the path of the application, and allowed me to
automatically place those windows where I wanted by using KDE's window specific
settings.
I've upgraded to 0.9.12 now, and it's probably because of the desktop changes in
0.9.11 that the desktop windows are now named just "Wine desktop" (which makes
sense, as the desktop can contain multiple applications now). Unfortunately KWin
cannot distinguish the three desktops any more as they'll all have the same
class & title.
Proposed fix: add the desktop name to the window title, e.g. calling the window
"Wine desktop: $desktop_name".
This would allow me to run my apps with
WINEPREFIX=/my/path/to/prefix_A/ wine explorer /desktop=A myapp.exe
to get a unique window title "Wine desktop: A".
I wouldn't know how to fix this the proper way, so I'll leave the patching to
you. Setting to wine-misc, as I'm not sure if it needs to be fixed in explorer,
x11driver, both of them, or even somewhere else.
I'm using wine 0.9.12 from source, directly from gentoo portage, on x86_64, but
I don't think that matters in this case.
--
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=5112
------- Additional Comments From Speeddymon(a)gmail.com 2006-22-04 10:02 -------
What about if you don't change the window metrics? If you just:
1) Install wine from CVS.
2) $ wine explorer (Works. And creates fresh .wine folder too)
-skip several steps-
6) $ wine explorer..
does it fail on the 2nd run?
How about if you run wineprefixcreate before running wine explorer in step 2,
does it fail after all of the steps?
--
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=5113
Summary: Wine allows programs to change X resolution, doesn't
fix.
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nospam(a)thenerdshow.com
Wine allows all Windows full-screen programs (games mostly) to change the X
screen resolution. Most do not correctly restore it. This is a problem with
Windows as well as wine. We can fix it in wine, however by running wine with a
wrapper to check screen resolution, like so:
============================ smartwine.sh ====
#/bin/sh
size=$(sudo xrandr | grep \* | cut -b2)
wine $@
#For testing. Purposefully set X to a different resolution.
#xrandr -s 1
newsize=$(sudo xrandr | grep \* | cut -b2)
if [ $size <> $newsize ]; then echo "Wine has changed X resolution. Fixing it..."
fi
xrandr -s $size
=================================
Shouldn't this functionality be built in to wine, however?
--
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=5104
------- Additional Comments From dank(a)kegel.com 2006-22-04 09:38 -------
Valgrind 3.1.1 didn't give anything especially illuminating.
--
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=5107
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rob(a)codeweavers.com
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-22-04 09:38 -------
The above mentioned patch can cleanly be reverted in current cvs; after patch
-Rp1 -i patch.diff the text is back in the installer, however the installer
stillstill fails later on with an msi-error 1603. I think that is caused by
another patch, but that's difficult to figure out ... For now added author of
this patch to 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=5104
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |critical
Summary|Firefox 1.5 terminates after|Firefox 1.5 unstable
|"epoll_ctl: operation not |
|permitted" |
------- Additional Comments From dank(a)kegel.com 2006-22-04 09:02 -------
OK, Firefox has crashed four times this morning
with cvs as of last night. This problem was probably
introduced in the last four days.
It's so bad I had to switch back to Linux firefox.
Most of the time I don't get anything in the log,
but the most recent time I got a stack dump (short, so I'll paste it here):
Backtrace:
=>1 0x7d18a8c0 HTTP_HttpSendRequestW+0xeb7(lpwhr=0x7a5bd140, lpszHeaders=0x0,
dwHeaderLength=0x0, lpOptional=0x7a54e95a, dwOptionalLength=0x1,
dwContentLength=0x1, bEndRequest=0x1)
[/home/dank/wine/dlls/wininet/../../include/winbase.h:2070] in wininet (0x7d18a8c0)
2 0x7d18c014 HttpSendRequestW+0x1c4(hHttpRequest=0x6, lpszHeaders=0x0,
dwHeaderLength=0x0, lpOptional=0x7a54e95a, dwOptionalLength=0x1)
[/home/dank/wine/dlls/wininet/http.c:1897] in wininet (0x7d18c014)
3 0x7d18c108 HttpSendRequestA+0xca(hHttpRequest=0x6, lpszHeaders=0x0,
dwHeaderLength=0x0, lpOptional=0x7a54e95a, dwOptionalLength=0x1)
[/home/dank/wine/dlls/wininet/http.c:1929] in wininet (0x7d18c108)
4 0x300c6575 (0x300c6575)
5 0x300b22d5 (0x300b22d5)
6 0x300b26b6 (0x300b26b6)
7 0x300b27f6 (0x300b27f6)
8 0x00000000 (0x00000000)
0x7d18a8c0 HTTP_HttpSendRequestW+0xeb7
[/home/dank/wine/dlls/wininet/../../include/winbase.h:2070] in wininet: cmpw
$0,0x0(%ecx)
2070 while (*s) s++;
I guess I'll try valgrind 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=5107
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-22-04 07:47 -------
i try to track down changes that broke the installer; first regression is caused by
http://www.winehq.org/pipermail/wine-cvs/2006-March/021660.html
That makes the installer fail with messagebox: Internal Failure: Error number 0x
00407070; (that 's what happens in wine-0.9.11)
Somehow this is fixed in 0.9.12, but maybe not right as the installer still fails.
i'll first try revertinf these changes and see if it fixes things
--
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=5112
------- Additional Comments From nospam(a)thenerdshow.com 2006-22-04 07:46 -------
Interesting. I did a trace.
trace:file:wine_nt_to_unix_file_name
L"\\??\\C:\\windows\\system32\\winefile.exe" ->
"/home/user/.wine/dosdevices/c:/windows/system32/winefile.exe"
trace:file:CreateFileW returning 0x44
trace:file:RtlDosPathNameToNtPathName_U (L"",0x7faef4b4,(nil),(nil))
Running wine's explorer with no arguments causes it to try and create a file and
die. When I instead run it with an argument, such as "wine explorer ." it
works. Winefile needs no such command line argument to work. This is not the
expected behavior. Winefile and explorer should be interchangeable, since they
are, in fact, the same program. I did a byte compare to make sure.
--
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=5066
------- Additional Comments From winehq(a)aynoa.net 2006-22-04 07:32 -------
I use rpms, I recompile nothing. I don't know how to recompile fonts.
If you suggest the correct steps to me I will not have any problem in trying
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=5112
Summary: Explorer (wine builtin) fails when window_metrics are
tweaked
Product: Wine
Version: CVS
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nospam(a)thenerdshow.com
Steps to reproduce:
1) Install wine from CVS.
2) $ wine explorer (Works. And creates fresh .wine folder too)
3) $ regedit (set HKCU/Control Panel/Desktop/DragFullWindows=1)
4) set HKCU/Control Panel/Desktop/WindowMetrics/BorderWidth=0
5) winecfg (set wine desktop 1024x768
6) $ wine explorer (fails silently)
7) reverse the changes you made above
8) $ wine explorer (still fails. WTF?!)
--
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=5066
------- Additional Comments From marcus(a)jet.franken.de 2006-22-04 07:16 -------
you do recompile wine inbetween? or at least the fonts dir?
--
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=5099
------- Additional Comments From b.buschinski(a)web.de 2006-22-04 06:54 -------
Created an attachment (id=2324)
--> (http://bugs.winehq.org/attachment.cgi?id=2324&action=view)
switch FSCTL_LOCK_VOLUME/FSCTL_UNLOCK_VOLUME return
even with this it works fine
The game needs the real CD to run and I think this is the device 9
(but not sure)
btw: It is called whenever I run the game and start a new game
so it is not only an installation 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=5066
------- Additional Comments From winehq(a)aynoa.net 2006-22-04 06:43 -------
I did the next:
1) Install FontForge 20040808 from SuSE packages.
2) Test wine 0.9.11 and it works fine.
3) Install wine 0.9.12 rpm and it fails.
4) Install FontForge 20060413 rpm from sourceforge.
5) Test wine 0.9.12 rpm and it fails.
6) Erase my wine configuration.
7) Test again wine 0.9.12 and it fails.
8) Uninstall wine 0.9.12.
9) Install wine 0.9.11
10) Test wine 0.9.11 and it works fine.
11) Restore my previous wine configuration.
12) Test wine 0.9.11 and it works fine.
13) Uninstall FontForge.
14) Test wine 0.9.11 and it works fine.
Note: I use winecfg to do all the wine tests.
--
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=5066
------- Additional Comments From marcus(a)jet.franken.de 2006-22-04 06:38 -------
speaking for the suse rpms ... the build environment was not changed.
0.9.11 was build with the exact same set of fontforge and freetype2 libraries
as was 0.9.12. :(
--
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=5111
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-22-04 06:25 -------
This isvery similar to , and is probably a duplicate of ,
http://bugs.winehq.org/show_bug.cgi?id=4998
It is fixed by the (yet) unmerged patches from Stefan Dosinger (see bug 4998)
Could you check if this is really the case?
--
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=4733
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|Get |Get
|optimized/compressed/packed |optimized/compressed/packed
|executables working |executables (non-upx)
| |working
------- Additional Comments From Speeddymon(a)gmail.com 2006-22-04 06:09 -------
Can anyone having problems try the patch mentioned above and let us know if it
fixes your problem?
I did know that upx compressed exe's worked, but didn't think to mention 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=5111
Summary: Dredd demo crashes in a directx8 error
Product: Wine
Version: CVS
Platform: Other
URL: http://www.gamershell.com/download_3451.shtml
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
Judge Dreed demo crashes when playing a introduction movie. This game used to
work well. So, this is a regression. But, since there were a lot of changes in
directx implementation, it seems too difficult to look for the patch which does
the regression.
Joaopa
--
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=5066
------- Additional Comments From mike(a)codeweavers.com 2006-22-04 05:16 -------
Depending on which other fonts you have installed on your system, the problem
may or maynot appear. The best way to remedy the situation is to install FontForge.
--
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=5066
------- Additional Comments From winehq(a)aynoa.net 2006-22-04 05:09 -------
I have not FontForge and previous version of rpm, 0.9.11, works fine in SuSE
9.3 whithout any package 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=4733
------- Additional Comments From michal.seliga(a)visicom.sk 2006-22-04 05:06 -------
well the major used compressosrs like upx mostly work.
problem is with compressors targeted to little files, mostly 4k and 64k intros.
when someone will look into this issue please take also look to crinkler
compressed files. so far they are not even recognized as executables. they also
don't work on windows 98 and according to authors they are targeted to PE loader
of windows 2000,xp and vista only and wine has probably more sanity checks that
they do...
links to crinkler:
http://www.pouet.net/prod.php?which=18158http://www.crinkler.net/
--
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=5099
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-22-04 04:44 -------
| Btw if you hack it that way, does it work? Or does it get any farther?
Vitaliy, as bernd already has said, it make the game start much faster...
* bernd buschinski writes:
| But what if we just change the return status?
| from STATUS_NOT_SUPPORTED to STATUS_SUCCESS
|
| at least it makes the "Command and Conquer" start mutch faster
So I suppose it helps, but I doubt we should be making this change for all
unhandled NtFsControlFile functions.
Bernd, can you try adding two required cases to NtFsControlFile(), namely
FSCTL_LOCK_VOLUME and FSCTL_UNLOCK_VOLUME, and set return status only here?
* Vitaliy Margolen writes:
| I meant that it will always fail on native when used on drive c:
| It will suceed only if there are "no open handles on the device refernced by
| handle".
But we don't know whether Tiberian Sun is referring to the drive c: . That's
why I was asking about a way to get description of an object pointed by the
handle. BTW, thank you for your nice explanation, Vitaliy.
| As far as implementing that on Wine - you can't. At best you can change return
| value (something that you did with your patch). But that would be invalid for
| most cases.
IMHO, we still could detect tries to lock CDFS (device type
FILE_DEVICE_FILE_SYSTEM being compatible with a FILE_DEVICE_CD_ROM_FILE_SYSTEM,
not with a FILE_DEVICE_DISK_FILE_SYSTEM), then we could check whether running
linux kernel keeps appropriate CD device locked and if so--we could return
STATUS_SUCCESS. No?
Bernd, does the game use real CD during its 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=4370
------- Additional Comments From marcus(a)jet.franken.de 2006-22-04 04:01 -------
changing == to & is definiutely wrong, because VT_VARIANT is not a bitmask,
but 12 (0xc), so it true for everything with bit 3 or bit 2 set.
you can try adding a FIXME() that prints out the VT before this line and see
what value it has
--
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=5102
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords|regression |
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-22-04 03:22 -------
Sorry, is no regression, just a 'normal' 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=5109
Summary: When having updates (one or multiple) window response
time lags severely
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: enhancement
Priority: P4
Component: wine-ipc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ryanbach(a)adelphia.net
Where there is a Steam update (sorry I don't have logs) and I have set multiple
items to "Always keep this game up to date" (right click the item, Properties ->
Updates) then it lags the window in equivalence to number that are set to do so.
In the best case it is just a small annoyance and little time is lost, usually
it just lags the window response time and at the worst the user could think that
it is frozen because the window doesn't refresh at all and shows a mouse "trail"
and severely impairs the update time in a negative manner.
--
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=5102
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.linkomp.pl/downlo
| |ad/pity2005ngsetup.exe
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |download, regression
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-22-04 01:28 -------
Confirming. Looks like another regression between wine 0.9.4 (no bug) and 0.9.5
(bug) Micha, could you do a reression test?
--
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
------- Additional Comments From vitaliy(a)kievinfo.com 2006-21-04 22:00 -------
The cause is really simple actually: Wine creates X windows for top level
windows _only_. All the rest of the windows are Wine only windows and do not
exist for X.
But libGL can draw on X windows only...
--
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=5050
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From vitaliy(a)kievinfo.com 2006-21-04 21:52 -------
Looks like Wine doesn't have Unicode version of that function at all.
Btw it is implemented in ASCII only.
M$ has loads of their extensions that are not documented in any way. Wine
working towards supporting native windbg but it's a long ways away.
You will have much better luck using gdb.
--
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=5066
------- Additional Comments From vitaliy(a)kievinfo.com 2006-21-04 21:42 -------
Correct, SuSE 9.3 has broken FontForge - not Wine's 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=5099
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|fixme:ntdll:NtFsControlFile |Problem installing Command
| |and Conquer Tiberian Sun
------- Additional Comments From vitaliy(a)kievinfo.com 2006-21-04 21:35 -------
Btw if you hack it that way, does it work? Or does it get any farther?
I meant that it will always fail on native when used on drive c:
MSDN is really clear about this:
It will suceed only if there are "no open handles on the device refernced by
handle".
As far as implementing that on Wine - you can't. At best you can change return
value (something that you did with your patch). But that would be invalid for
most cases.
Handles are indexes into handle table inside OM (object manager). It resides in
wineserver. The example from comment #6 will not work - it tries to mapp file as
file section - which won't work ok device ex: "\??\D:".
You could use NtQueryObject with ObjectBasicInformation & ObjectNameInformation.
That should work on devices but I don't know if that will work on files...
And of course that's not implemented on Wine.
So I don't see how it can be _fixed_. You can hack it's return value - but
that's not a solution...
--
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
------- Additional Comments From philip(a)digitalinfinity.biz 2006-21-04 20:03 -------
Yeah... It looks like the window.c in the x11drv subdirectory needs to be
changed to handle an new type of window. But it looks like you'll have to change
a few other libraries to recognize the new window type.
Judging by one of the back traces that I did in rendermonkey. A window doesn't
get created somewhere because invalid values are passed to it. This is the same
bug as what your struggling with with that program too. Wonder if that has
anything to do with it? Does the video lan project have the same issue?
Your definetly going to have to temporarily break some code to get it to work.
Thats for sure. Looks like project that is going to take all summer.
--
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=4733
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |enhancement
Keywords| |tasklist
Priority|P2 |P3
Summary|This 64k demo crashes at |Get
|startup |optimized/compressed/packed
| |executables working
Target Milestone|--- |1.0.0
Version|CVS |unspecified
------- Additional Comments From Speeddymon(a)gmail.com 2006-21-04 19:53 -------
wine currently only supports (officially anyways) running uncompressed
exeuctables. Which means that this bug is not a critical, but more of an
enhancement, one that should be fixed though by 1.0. If someone wants to run
one scene.org's demos they should uncompress it. IMHO it's not really a big
issue since it is only affecting a release group's demo, not anything major like
photoshop. If uncompressing it is not possible for whatever reason (the most
likely being that the exe packer doesnt run under wine), then unless the program
is one that is interactive or automatic but serves a purpose, it's pretty much
tough luck for that program, unfortunately, although I do think it should be
fixed by 1.0, which is why I put target milestone.
--
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=5099
------- Additional Comments From Speeddymon(a)gmail.com 2006-21-04 19:44 -------
I can confirm that it does work on native with only c: drive and a cd drive...
So if you mean that it wont work on native with a c: drive but no other drive,
including a cd drive or floppy, then yes, but that is expected as the game is
copy protected, meaning you need the cd, so its (possibly unintentionally) an
additional copy protection measure...
--
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=5102
------- Additional Comments From wolvverine(a)tlen.pl 2006-21-04 19:20 -------
http://www.linkomp.pl/download/pity2005ngsetup.exe - it is polish language program
in menu:
pliki / wlasciwosci programu / {tab} Foldery
or
pliki / eksportuj / pdf (you must write data too tax form)
and if close program window:
wine: Unhandled page fault on read access to 0x7eb7d960 at address
0x0000:0x004045de (thread 0009), starting debugger...
WineDbg starting on pid 0x8
First chance exception: page fault on read access to 0x7eb7d960 in 32-bit code
(0x004045de).
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:004045de ESP:7fb9f9c4 EBP:7fb9fed8 EFLAGS:00010206( - 00 - RIP1)
EAX:7eb7d960 EBX:0040505e ECX:00000000 EDX:7fb9f901
ESI:7fb9feb8 EDI:7fb9feb8
Stack dump:
0x7fb9f9c4: 00404e15 00405068 00000000 00000000
0x7fb9f9d4: 7eb7d960 7fb9fe18 7fb9fa04 7fb9fa1c
0x7fb9f9e4: 7fb9fe18 7fb9feb8 7ffd5320 7ffbd109
0x7fb9f9f4: 7fb9fe18 7fb9feb8 7fb9fb4c 7fb9fa6c
0x7fb9fa04: 7fb9fea4 7ffa0e40 7fb9feb8 7f2859fc
0x7fb9fa14: 7f2bf820 00000000 7fb9fa3c 7ffbd0dd
Backtrace:
=>1 0x004045de in pity2005ng (+0x45de) (0x004045de)
2 0x0040530a in pity2005ng (+0x530a) (0x0040530a)
3 0x7fc98d18 in kernel32 (+0x48d18) (0x7fc98d18)
4 0xb7f9618b wine_switch_to_stack+0x17 in libwine.so.1 (0xb7f9618b)
0x004045de: movl 0x0(%eax),%ecx
--
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
------- Additional Comments From dank(a)kegel.com 2006-21-04 18:52 -------
Indeed. This is reasonably high up on my priority list, but it's not simple.
--
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=2398
------- Additional Comments From philip(a)digitalinfinity.biz 2006-21-04 18:34 -------
Phil, its not that simple. I've looked at the code. They've got some work to do
to get it working. Its not that simple. Its not about a crapy patch. Its about
how they are handling windows in the program. They are deciding whether its a
top level window and then determining if the window needs to be managed by the
window manager.
As far as I can tell in the code there is no code to handle subwindows like
that. They have some work to do to get it working. And the code we are talking
about appears to be spread over 3 different DLL's. There appears to be
interdependency issues that need to be resolved.
It actually looks pretty complicated to get it working. Thats probably why they
are having trouble. I admit I've been looking for a place to put the update code
and I can't find a good spot. I'll keep looking but such is life.
--
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=2398
------- Additional Comments From phil(a)ldex.terica.net 2006-21-04 17:16 -------
Apparently not. Insufficient motivation either for Codeweavers or anyone else.
I've lost all hope.
--
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=5108
linuxuser(a)process.si changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |LATER
------- Additional Comments From linuxuser(a)process.si 2006-21-04 16:47 -------
I'm confirming that was the cause.
Thank you!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2398
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-21-04 16:13 -------
Is there _anyone_ who at least has some kind of evil hack to get around this
bug( some kind of crappy patch that at least works as a temporary work around
for people like me that would just like to run an application , but the
application is really unusable bcause of this bug?) This bug is really getting
annoying....
--
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=5108
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-21-04 15:52 -------
I hope i'm correct but i think that there has been added recently an (almos
empty) implementation of builtin dnsapi to wine. So i guess it's trying to use
builtin dnsapi now , that fails because of unimplemented stuff. As a tmperorary
work around you mi\ght want to try WINEDLLOVERRIDES="dnsapi=n" wine emule.exe
until more stuff is implemented
--
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=5108
linuxuser(a)process.si changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Other |PC
--
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=5108
Summary: Wine crashes after connecting with emule
Product: Wine
Version: 0.9.12.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: linuxuser(a)process.si
Starting with version 0.9.12. Wine now crashes trying to run emule. It crashes
after connection to server is sucessfully established with following message:
Unimplemented function dnsapi.dll.DnsQueryConfig called......, starting debugger
--
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=5050
linuxuser(a)process.si changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |critical
--
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=5050
linuxuser(a)process.si changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |major
--
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=5099
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-21-04 15:19 -------
* Vitaliy Margolen writes:
|
| Besides I don't see any reason why that game wants to lock a partition? It won't
| work on native with only c: drive.
Right, but maybe it works natively with inserted CD-volumes nice? It would be
interesting to know what device/volume is pointed to by the "device=9"...
wouldn't 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=5107
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 14:16 -------
Innovative... If that is the case you can do regression testing (at least in
CVS) on the msi dll by doing you updates in the msi directory. providing that
none of the includes (*.h) have changed.
cd ~/wine/dlls/msi
cvs update -D ....
You still have to make depend && make in the root of 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=5107
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-binary |wine-msi
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-21-04 14:02 -------
I think it's an msi-bug. As a hacky-wacky method i copied msi.dll.so from
wine-0.9.10 (i have about 20 wineversions laying around here :) ) to Farcry's
setup directory and renamed it to msi.dll, and ran with WINEDLLOVERRIDES="msi=n"
wine setup.exe. Now the text is back again, but the installere fails later on.
For now i'll mark this as an msi 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=5107
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-21-04 13:26 -------
Looks like regression testing will be difficult too: in wine-0.9.10 it works, in
0.9.11 the installere stops with a messagebox: Internal Failure: Error number 0x
00407070; in wine-0.9.12 i get the error described in the first message. So
looks like more regressios took place...
--
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=4051
------- Additional Comments From chris.bainbridge(a)gmail.com 2006-21-04 13:07 -------
Hi, I traced the problem with winecfg crashing on my system to the proprietary
ATI drivers. I posted a detailed description in bug #4561.
http://bugs.winehq.org/show_bug.cgi?id=4561#c6 describes ATIs response - they claim:
"Alternatively it can be considered as a problem of the application to preserve
the respective state of the used TLS method that the OpenGL driver did already
"claim" and use."
Well, I think ATIs drivers should at least prevent kernel corruption leading to
unexplained crashes...
--
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=5066
------- Additional Comments From marcus(a)jet.franken.de 2006-21-04 13:01 -------
i have seen the same with the WINE package I built for suse linux 9.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=5107
Summary: Regression: Far Cry Demo fails to install
Product: Wine
Version: CVS
Platform: PC
URL: http://www.gamershell.com/download_4929.shtml
OS/Version: Linux
Status: NEW
Keywords: regression, download
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Yip, another reegression. The installer should have an option to select/deselect
the things you should install. In current cvs this option is not present
anymore. I think the installer fails now because it tries to install DirectX
9.0b; before the regression you could deselect that option. I'll attach a
screenshot for clearity
--
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=5066
------- Additional Comments From winehq(a)aynoa.net 2006-21-04 12:48 -------
The rpm available for SuSE 9.3 has the same problem. Previous version or rpm,
0.9.11 works 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=5106
Summary: AutoCAD 2000i crash on the startup with native msvcrt
Product: Wine
Version: 0.9.12.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: agbr(a)hotbox.ru
--
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=4642
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
--
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=5105
Summary: AutoCAD 2000i crash on the startup
Product: Wine
Version: 0.9.12.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-kernel
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: agbr(a)hotbox.ru
fixme:ole:CoRegisterMessageFilter stub
fixme:ole:CoRegisterMessageFilter stub
wine: Call from 0x404c3500 to unimplemented function msvcrt.dll._setmaxstdio,
aborting
fixme:dbghelp:sffip_cb NIY on 'E:\8447\vc98\mfc\mfc.bbt\src\mfc42.pdb'
fixme:msvcrt:MSVCRT__fsopen :(acad.err,r+b,16),ignoring share mode!
--
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=5026
------- Additional Comments From linux(a)travisdale.net 2006-21-04 12:24 -------
OK, I tried the defualt drivers and as I suspected I could not get anything that
uses openGL to work. I then waited until Fedora 5.0 came out with rpms for the
0.9.12 and just installed it. I'm still getting the same errors:
X Error of failed request: GLXBadContext
Major opcode of failed request: 143 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 4659
Current serial number in output stream: 4659
What patches do I need to install? I couldn't find them.
Is there anything that can be done inorder to use the rpm's or am I going to
have to recompile? recompiling seems to require alot of library soft linking
that isn't done in FC5 anymore.
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=5098
------- Additional Comments From djr1952(a)hotpop.com 2006-21-04 11:56 -------
Vitaliy Margolen is correct about the no need for:
mozcontrol.tar.gz
MozillaControl1712.exe
mozilla-win32-1.7.12-installer.exe
QuickBooks 2006 {pro or not} will not make use of it, for QuickBooks is tied to
features that only Internet Explorer 6 supply.
{Much of the display features in QuickBooks is really coming from iexplorer.}
Is "install_flash_player.exe" another name for the Flash Player 7 or above
installer?
The Flash Player 7 or above is used to display the QuickBooks Help messages.
What are the following and how do they relate to installing QuickBooks?
249973USA8.exe
runtime60
tahoma.ttf
My suggestion is create a BOTTLE version of ".wine/" and install ONLY the
required parts for QuickBooks to function and see what happens?
Also did "dotnetfx1.1.exe" really install without ERRORS for you?
I have yet to get it to install without a failure error of some kind.
-- DonJr ...
--
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=5104
Summary: Firefox 1.5 terminates after "epoll_ctl: operation not
permitted"
Product: Wine
Version: 0.9.12.
Platform: Other
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
I dunno what I was doing, but Firefox bombed
just now, and the last two lines in the log were
epoll_ctl: operation not permitted
X connection to :0.0 broken (explicit kill or server shutdown)
I'll add another comment here next time it happens.
--
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=5029
------- Additional Comments From james.mccaughey(a)gmail.com 2006-21-04 11:46 -------
Can you give some details of your wine configuration and when this problem
occurs? Does it just crash when you are initially loading the game or entering
world? Additionally did you set your graphics to opengl and confirm that you do
have 3D support?
--
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=5103
Summary: NativeMSI possible installer bug trigered in DotNetFx
Product: Wine
Version: 0.9.11.
Platform: Other
URL: http://appdb.winehq.org/commentview.php?appId=493&versio
nId=3678&threadId=11583
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: djr1952(a)hotpop.com
See the url for a full description
<http://appdb.winehq.org/commentview.php?appId=493&versionId=3678&threadId=1…>
This thread up to this point contains most of what I tried and had failures with.
High points are:
] StopDarwinService() - ERROR: Unable to open the 'msiserver' service!
] GetLastError() returned: <0>
] Loading: msi.dll {{the nativemsi version with registers set to native}}
] Calling MsiInstallProduct() with commandline: ADDLOCAL=All
ARPSYSTEMCOMPONENT=1 ARPNOREMOVE=1 REBOOT=ReallySuppress
] MsiInstallProduct() returned 1603
and a simple with another try.
] StopDarwinService() - ERROR: Unable to open the 'msiserver' service!
] GetLastError() returned: <1060>
Note all of these are from trying to install "DotNetFX.exe" although apperantly
more the one version of said program exists. since I get different effects
depending on which one I use.
This is with wine 0.9.11 and InstMsiA.exe downloaded today.
-- DonJr ...
--
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=4642
------- Additional Comments From b.buschinski(a)web.de 2006-21-04 11:04 -------
Arrrrrr
this bug is invalid
after creating a new .wine folder all problems are gone
--
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=5099
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #2319 is|0 |1
patch| |
--
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=4586
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:27 -------
Closing 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=4578
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:27 -------
Closing Duplicate.
--
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=4577
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:26 -------
Closing 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=4573
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:26 -------
Closing 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=5099
b.buschinski(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|WONTFIX |
------- Additional Comments From b.buschinski(a)web.de 2006-21-04 10:25 -------
But what if we just change the return status?
from STATUS_NOT_SUPPORTED to STATUS_SUCCESS
at least it makes the "Command and Conquer" start mutch faster
or would it cause to mutch trouble to other apps?
(I dont know any that use 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=4559
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:22 -------
Closing 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=4561
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:21 -------
This is a duplicate of 4051
*** This bug has been marked as a duplicate of 4051 ***
--
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=4051
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |chris.bainbridge(a)gmail.com
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:21 -------
*** Bug 4561 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=4556
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:18 -------
Closing 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=4554
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:18 -------
Closing 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=4546
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:17 -------
Closing 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=4545
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:17 -------
Closing 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=4544
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-21-04 10:16 -------
Closing 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.