http://bugs.winehq.com/show_bug.cgi?id=1309
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 10:35 -------
Bug comments restored from Gmane.org:
if you have LANG set to de_DE you can input german umlauts.
If you have set it to de_DE.utf8, you no longer can.
instead wine reports for ä (a diaresis even):
fixme:keyboard:EVENT_event_to_vkey keysym is E4
fixme:keyboard:EVENT_event_to_vkey e->keycode is 2F
fixme:keyboard:EVENT_event_to_vkey just before vkey generation, pressed KeyPress?
fixme:keyboard:EVENT_event_to_vkey keysym is E4
fixme:keyboard:EVENT_event_to_vkey e->keycode is 2F
fixme:keyboard:EVENT_event_to_vkey just before vkey generation, pressed KeyPress?
err:keyboard:X11DRV_ToUnicode Please report: no char for keysym 00E4 (adiaeresis) :
err:keyboard:X11DRV_ToUnicode (virtKey=DE,scanCode=28,keycode=2F,state=0)
fixme:keyboard:EVENT_event_to_vkey keysym is E4
fixme:keyboard:EVENT_event_to_vkey e->keycode is 2F
fixme:keyboard:EVENT_event_to_vkey just before vkey generation, pressed KeyRelease?
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1310
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 10:34 -------
Bug comments restored from Gmane.org:
[root@cobra wine]# make
make[1]: Entering directory `/usr/src/wine-cvs/wine/library'
gcc -c -I. -I. -I../include -I../include -g -O2 -Wall
-mpreferred-stack-boundary=2 -gstabs+ -Wpointer-arith -fPIC -D__WINESRC__
-DDLLDIR="\"/usr/local/lib/wine\"" -D_REENTRANT -o ldt.o ldt.c
ldt.c: In function `set_thread_area':
ldt.c:97: `__NR_set_thread_area' undeclared (first use in this function)
ldt.c:97: (Each undeclared identifier is reported only once
ldt.c:97: for each function it appears in.)
make[1]: *** [ldt.o] Error 1
make[1]: Leaving directory `/usr/src/wine-cvs/wine/library'
make: *** [library] Error 2
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2003-03-05
07:38 -------
I really don't see why you should get such an error.
In line 97 in CVS, there's SYS_set_thread_area, NOT __NR_set_thread_area.
Or try:
cd /usr/include
find|xargs grep __NR_set_thread_area
to hopefully get some more clue on why exactly this error happens :-\
(perhaps SYS_set_thread_area is defined as __NR_set_thread_area somewhere in
/usr/include)
------- Additional Comments From ivg2 <at> cornell.edu 2003-03-05 07:50 -------
I was slightly puzzled myself, but here it is:
[phantom@cobra include]$ find|xargs grep __NR_set_thread_area
./bits/syscall.h:#define SYS_set_thread_area __NR_set_thread_area
[phantom@cobra include]$ cd /usr/src/wine-cvs/wine/library
[phantom@cobra library]$ grep syscall.h ldt.c
# include <sys/syscall.h>
[phantom@cobra library]$ grep syscall.h /usr/include/sys/syscall.h
we scan the kernel's list and produce <bits/syscall.h> with macros for
# include <bits/syscall.h>
[phantom@cobra library]$
------- Additional Comments From julliard <at> winehq.com 2003-03-05 12:00 -------
The __NR_ one should be defined in asm/unistd.h. Is your asm directory a link
to some old kernel source by any chance? And what's your glibc version?
------- Additional Comments From ivg2 <at> cornell.edu 2003-03-05 12:31 -------
Very strange..
My glibc-kernheaders RPM somehow ended up being newer than Rawhide,
even though I upgrade from Rawhide. I downgraded to current Rawhide,
and the problem is fixed (__NR_set_thread_area is in asm/unistd.h for that
version of the glibc headers, wine compiles..)
Thanks for your help.
Sorry for invalid report.
------- Additional Comments From dpaun <at> rogers.com 2003-03-25 17:38 -------
Looks like it's ready to be CLOSED.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1312
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 10:30 -------
Bug comments restored from Gmane.org:
dlls/ntdll/cdrom.c does not compile on NetBSD, because it expects CD_FRAMES,
CD_SECS, and CDROM_MSF to be defined in some system header.
On Linux, they seem to be in <linux/cdrom.h>, but they are not defined on
NetBSD at all.
I'll attach a patch that makes it compile again.
This patch also ifdef's out a debugging message that uses some fields of a
structure which also don't exist on NetBSD.
------- Additional Comments From wiz <at> danbala.ifoer.tuwien.ac.at 2003-03-08
02:16 -------
Created an attachment (id=418)
--> (http://bugs.winehq.com/attachment.cgi?id=418&action=view)
compilation fix as mentioned in the bug report
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2003-03-08
03:05 -------
'scuse me, I don't see that
TRACE("caching toc from=%d to=%d\n", hdr.cdth_trk0, hdr.cdth_trk1);
line in newest CVS.
Are you running CVS?
If not, does CVS fix anything?
Err no, you're not.
Current CVS has some half-fix. Could you update and patch the remaining missing
parts (CDROM_MSF etc.) instead?
Thanks for the report!
------- Additional Comments From wiz <at> danbala.ifoer.tuwien.ac.at 2003-03-08
07:41 -------
ok, the CD_SECS and CD_FRAMES as well as the debug line are fixed in CVS.
The CDROM_MSF is only used once outside of the #ifdef linux part -- I guess
that's an error and just shouldn't be there.
Additionally, I stumbled over a duplicate assignment around line 920:
data->MediaCatalog.FormatCode = IOCTL_CDROM_MEDIA_CATALOG;
data->MediaCatalog.FormatCode = sc.what.media_catalog.data_format;
One of them should probably go...
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1313
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 10:26 -------
Bug comments restored from Gmane.org:
The Microsoft Powerpoint viewer
http://download.microsoft.com/download/powerpoint2000/ppview97/2000/WIN98/E…
cannot print in wine. If you do "wine ppview32", click on a .pps file, and then
click
print,
the cursor turns busy until you move it, but nothing happens.
If you do "wine ppview32 somefile.pps" (to launch the slideshow directly,
without going
through the main dialog) and then print from the right-click menu, the app just
hangs,
and nothing else happens either...
When this happens, the following is printed to the log:
0009:fixme:commdlg:PRINTDLG_SetUpPrinterListComboA Can't find '(null)' in printer
list so trying to find default
N.B. There are printers defined in /etc/printcap, and other apps, such as the Word
viewer, the Excel viewer, and the builtin notepad print just fine.
------- Additional Comments From wine <at> alk.org.lu 2003-03-25 14:42 -------
*** This bug has been confirmed by popular vote. ***
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1314
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 10:10 -------
Bug comments restored from Gmane.org:
In wine-20030302 shipped by SuSE, if you have a truetype font directory defined
such
as the following:
[FontDirs]
"dir1" = "/home/aknaff/winefonts/core/ttf"
then all fonts defined there in will be downloaded into the generated postscript
file,
even if the printer natively understands them (as defined in the ppd file).
I.e. if I have an arial truetype font, this font is downloaded to the printer,
even though I
have the following in my .ppd file:
*Font ArialMT:
*Font Arial-BoldMT:
*Font Arial-BoldItalicMT:
*Font Arial-ItalicMT:
and even though I have the relevant .afm files in my [afmdirs].
The only way how I could force wine to use the printer's builtin Arial font was
to define
a substitution table where I substituted it with itself:
[System\\CurrentControlSet\\Control\\Print\\Printers\\file\\PrinterDriverData\\FontSubTable]
1047119381
"Courier New"="Courier New"
"Arial"="Arial"
"Times New Roman"="Times New Roman"
"Webdings"="Webdings"
"Tahoma"="Tahoma"
...
[Btw, the above FontSubTable worked for Courier New, Arial, Times New Roman, and
Tahoma, but still not for Webdings. But that's probably a different problem].
After perusing the source code, I found the following in
wine-20030219/dlls/wineps/font.c near the end of function PSDRV_SelectFont :
if(physDev->dc->gdiFont && !subst) {
if(PSDRV_SelectDownloadFont(physDev))
return 0; /* use gdi font */
}
PSDRV_SelectBuiltinFont(physDev, hfont, &lf, FaceName);
return (HFONT)1; /* use device font */
I.e. if there is a gdiFont defined for current font (I assume, this means if a
display font
has been loaded), and if the font is not the result of a substitution, then we
download it
into the printer. Otherwise we try to use a builtin font.
Shouldn't that be the other way round: first try to use a builtin font, and only
if that is not
possible (because no such font defined in generic.ppd or missing .afm file)
download it.
------- Additional Comments From wine <at> alk.org.lu 2003-03-25 14:42 -------
*** This bug has been confirmed by popular vote. ***
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1315
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 09:54 -------
Bug comments restored from Gmane.org:
Hello wine developers,
I have problems with directories on VFAT partitions. wine can't find most of
directories, it see only them with name with all capital ASCII letters. With
this problem I can run no program! I can run windows programs only from linux
partition.
I assigned this bug to wine-loader but I don't know if problem is there...
Problems occur for longer time (I tried last three releases).
Here is the listing directories and files which have such problems:
!Audio
&Audio
!Compress
CygWin
!Editory
!Education
Fifne
Filmy
!Grafika
!Hardware
&Hardware
Hry
&Hry
Install
!Internet
&Internet
Linux
&Listy
Mp3
MSOffice
My Music
Obrázky
Petr
!Prog
&Prog
!Program Files
temp
&Upload
Video
&Video
!Viewers
Zálohy
3nityShop_soubory
Frankie[1].asx
Zarodek.bmp
Pøísloví.doc
snail.gif
3nityShop.htm
48h_ccds.it
Entropie.jpg
pp3-36-12.jpg
ww1-36-12.jpg
1a1a.jpg
6a6a.jpg
dirs.lst
1judas_o.mp3
print.mxp
mat_sym_v5.ps
zcu-ca.p7b
ildasm.reg
all.tgz
eee.txt
frankieKnuckles[1].wax
Here is list which was OK:
FANDA
STULDA
AVG6DB_F.DAT
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2003-03-09
05:06 -------
Are you sure you're using proper "win95" or "vfat" entries in the Filesystem
type of a drive entry within the wine config file ~/.wine/config instead of
using the strongly discouraged "dos" type?
------- Additional Comments From valtri <at> atlas.cz 2003-03-09 05:12 -------
Thanks for quick response.
Yes I am. Here is my drive settings:
[Drive A]
"Path" = "/A:"
"Type" = "floppy"
"Device" = "/dev/fd0"
[Drive C]
"Path" = "/C:"
"Type" = "hd"
"Serial" = "16500FEC"
"Label" = "Fat16"
"Filesystem" = "win95"
[Drive D]
"Path" = "/D:"
"Type" = "hd"
"Serial" = "38D2DA25"
"Label" = "Fat32"
"Filesystem" = "win95"
; make sure that device is correct and has proper permissions !
[Drive E]
"Path" = "/E:"
"Type" = "hd"
"Serial" = "3ACE2659"
"Label" = "Mp3"
"Filesystem" = "win95"
[Drive H]
"Path" = "${HOME}"
"Type" = "network"
"Label" = "Home"
"Filesystem" = "win95"
[Drive L]
"Path" = "/"
"Type" = "network"
"Label" = "Linux"
"Filesystem" = "win95"
[Drive Q]
"Path" = "/Q:"
"Type" = "cdrom"
"Device" = "/dev/cdrom"
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2003-03-09
05:17 -------
Hmm, indeed.
Could you mention the mount options you use for /C: from /etc/fstab?
Maybe some unusual codepage or so?
Also, please add some --debugmsg +file,+dosfs logfile.
------- Additional Comments From valtri <at> atlas.cz 2003-03-09 06:16 -------
Part of etc/fstab:
/dev/hda1 /C: vfat
defaults,utf8,umask=007,quiet,nocase=1,uid=root,gid=local 0 0
End of logfile:
trace:dosfs:DOSFS_ReadDir Read: long_name:
L"Ir50_qc.dllrIR50_QC.DLLHOWUS~1.MSFSFPL~1.MSFF#2.logNCONEXA~2.LOG", short_name:
L"JAVAPERMGID"
trace:dosfs:DOSFS_ReadDir Read: long_name:
L"Ir50_32.dllrIR50_32.DLLHOWUS~1.MSFSFPL~1.MSFF#2.logNCONEXA~2.LOG", short_name:
L"JAVAPERMGID"
trace:dosfs:DOSFS_ReadDir Read: long_name:
L"Ivfsrc.axlIVFSRC.AX.DLLHOWUS~1.MSFSFPL~1.MSFF#2.logNCONEXA~2.LOG", short_name:
L"JAVAPERMGID"
trace:dosfs:DOSFS_ReadDir Read: long_name:
L"Ir32_32.dllVIR32_32.DLLHOWUS~1.MSFSFPL~1.MSFF#2.logNCONEXA~2.LOG", short_name:
L"JAVAPERMGID"
trace:dosfs:DOSFS_ReadDir Read: long_name:
L"Iac25_32.axVIAC25_32.AXHOWUS~1.MSFSFPL~1.MSFF#2.logNCONEXA~2.LOG", short_name:
L"JAVAPERMGID"
trace:dosfs:DOSFS_ReadDir Read: long_name:
L"vredir.vxdxVREDIR.VXDAXHOWUS~1.MSFSFPL~1.MSFF#2.logNCONEXA~2.LOG", short_name:
L"JAVAPERMGID"
warn:dosfs:DOSFS_FindUnixName L"WinRAR.exe" not found in '/C:/WINDOWS/SYSTEM'
warn:file:CreateFileW Unable to get full filename from
L"C:\\WINDOWS\\SYSTEM\\WinRAR.exe" (GLE 2)
wine: cannot find 'WinRAR.exe'
I can send compressed whole logfile directly to you (I don't know how attached
it here). It take 140 kB.
------- Additional Comments From valtri <at> atlas.cz 2003-03-09 06:42 -------
Created an attachment (id=419)
--> (http://bugs.winehq.com/attachment.cgi?id=419&action=view)
Console log with debugmsg +file +dosfs
------- Additional Comments From valtri <at> atlas.cz 2003-03-09 06:43 -------
Already I know how attach file. :-)
------- Additional Comments From spetreolle <at> yahoo.fr 2003-03-10 07:35 -------
Run Scandisk on your disk, as you have several files with the same shortname.
Looks like a corrupted filesystem.
trace:dosfs:DOSFS_ReadDir Read: long_name: L"snail.gifISNAIL.GIFY~1.PS\0010", sh
ort_name: L"STULDA "
trace:dosfs:DOSFS_ReadDir Read: long_name: L"1a1a.jpgf1A1A.JPGIFY~1.PS\0010", sh
ort_name: L"STULDA "
trace:dosfs:DOSFS_ReadDir Read: long_name: L"6a6a.jpgf6A6A.JPGIFY~1.PS\0010", sh
ort_name: L"STULDA "
trace:dosfs:DOSFS_ReadDir Read: long_name: L"pp3-36-12.jpg.PP3-36~1.JPG", short_
name: L"STULDA "
trace:dosfs:DOSFS_ReadDir Read: long_name: L"ww1-36-12.jpg.WW1-36~1.JPG", short_
name: L"STULDA "
trace:dosfs:DOSFS_ReadDir Read: long_name: L"My Music2MYMUSI~1-36~1.JPG", short_
name: L"STULDA "
trace:dosfs:DOSFS_ReadDir Read: long_name: L"&Audioi&AUDIOSI~1-36~1.JPG", short_
name: L"STULDA "
trace:dosfs:DOSFS_ReadDir Read: long_name: L"&InternetU&INTER~136~1.JPG", short_
name: L"STULDA "
trace:dosfs:DOSFS_ReadDir Read: long_name: L"&Progr&PROGINTER~136~1.JPG", short_
name: L"STULDA "
trace:dosfs:DOSFS_ReadDir Read: long_name: L"Zarodek.bmpIZARODEK.BMPJPG", short_
name: L"STULDA "
------- Additional Comments From valtri <at> atlas.cz 2003-03-10 07:59 -------
I ran the scandisk (under Windows) and all is OK.
Note files in this directory was repaired in the past and they already are with
short names (with "~").
I will delete this directory and send new wine logfile.
------- Additional Comments From valtri <at> atlas.cz 2003-03-10 08:07 -------
Created an attachment (id=421)
--> (http://bugs.winehq.com/attachment.cgi?id=421&action=view)
gzipped log output again, executed program is "/D:/!Education/CyberSky/Cybersky.exe"
------- Additional Comments From valtri <at> atlas.cz 2003-03-10 08:14 -------
Many short names are the same. It seems there is a bug with finding out short
names (or only in debug printfs :-)).
------- Additional Comments From valtri <at> atlas.cz 2003-03-25 08:49 -------
Interesting. I removed mount option "utf8" and it starts work:
mount /dev/hda5 /D: -t vfat -o utf8
... doesn't work (option "utf8" is required for reproducing this bug)
mount /dev/hda5 /D: -t vfat -o iocharset=utf8
... works, but there are doubled some characters
mount /dev/hda5 /D: -t vfat -o iocharset=cp852
... works, but some characters have bad encoding (cp852 isn't
Windows standard, it contains iso8859-2 characters)
mount /dev/hda5 /D: -t vfat -o iocharset=cp1250
... works OK (cp1250 is standard encoding in Windows
for iso8859-2 characters)
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1316
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 09:42 -------
Bug comments restored from Gmane.org:
When I open a figure in MATLAB the text and general scale of the objects in teh
figure are inordinately large. Some figures I have created on win show up only
partially, because of the size.
the url points to an example image.
note how large the buttons etc are.
Interestingly the tool tip string is the right size.
thanks, and congratulations on a very well made program
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1317
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 09:40 -------
Bug comments restored from Gmane.org:
I've running MS Access 97 Runtime. When I open a database with an embedded
OLE-Image in a form, wine crashes with following error:
fixme:storage:StorageImpl_Commit (2): stub!
wine: Unhandled exception, starting debugger...
err:seh:start_debugger Couldn't start debugger ("debugger/winedbg 134688536
228") (2)
Read the Wine Developers Guide on how to set up winedbg or another debugger
fixme:ole:CoSetState ((nil)),stub!
Wine exited with a successful status
Regards,
Daniel.
------- Additional Comments From marcus <at> jet.franken.de 2003-03-11 13:00
-------
please configure your debugger better to give a backtrace. (basically just do
"regedit
winedefault.reg" to get the registry to have the correct paths). also run with
-debugmsg +ole
and attach tyhe output.
------- Additional Comments From dschlager <at> kaindl.com 2003-03-12 00:34 -------
Created an attachment (id=422)
--> (http://bugs.winehq.com/attachment.cgi?id=422&action=view)
OLE Trace with -debugmsg +ole
------- Additional Comments From mike <at> theoretic.com 2003-03-12 10:28 -------
That trace seems to indicate the program ran successfully, or at least there's
no mention of the crash in it.
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1319
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 09:34 -------
Bug comments restored from Gmane.org:
When running the latest CVS of wine manually compiled with ./configure
--enable-opengl, OpenGL
programs output unreadable ASCII garbage to the terminal window, and make
beeping noises.
System info:
Kernel: linux 2.4.20-ck3
Xfree86: 4.2.1-6pre7 (Debian)
Graphics card: ATi Radeon 8500 64mb w/ ATi Binary drivers v2.5.1
Wine version: Cvs version as of 2003/3/12
------- Additional Comments From andi <at> rhlx01.fht-esslingen.de 2003-03-12
08:43 -------
Ah, here it is :)
Please attach a --debugmsg +relay,+opengl log file to find out where this
garbage happens.
Thanks!
------- Additional Comments From pwdre_ser <at> hotmail.com 2003-03-12 16:01
-------
Created an attachment (id=423)
--> (http://bugs.winehq.com/attachment.cgi?id=423&action=view)
Logfile of running Neverwinter Nights version 1.29
------- Additional Comments From pwdre_ser <at> hotmail.com 2003-03-12 16:05
-------
Here is a gzipped logfile of running Neverwinter Nights v1.29 with the requested
parameters.
Apologies for the large filesize.
------- Additional Comments From lionel.ulmer <at> free.fr 2003-03-15 16:08 -------
Well, this log is not really helpfull... As the garbage is on stdin and the
trace on stderr (so I cannot see where the garbage starts).
Moreover, except for the GL init in the X11 driver, there is NO GL call at all
in this log.
------- Additional Comments From pwdre_ser <at> hotmail.com 2003-03-20 13:38
-------
I apologize. I invoked wine as specified with &> ~/winelog.txt... was this not
correct? I could also attempt running a different openGL program (Such as quake2
or quake3 which I believe are available online.)
------- Additional Comments From lionel.ulmer <at> free.fr 2003-03-20 13:55 -------
Well, yeah, try to run with 'normal' Linux GL applications to see if it puts
garbage too.
Otherwise, as told, I do not see any GL call in your trace so I do not see why
this garbage only happens in GL applications.
------- Additional Comments From pwdre_ser <at> hotmail.com 2003-03-20 20:37
-------
Well, native linux openGL programs all run fine. (glxgears, tuxracer, quake2
linux and quake3 linux)
Additionally, I tried running the windows versions of quake2 and quake3,
redirecting the same way I'd
done before, with identical results. No opengl calls except the init.
Is there anything else I can do to help?
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.com/show_bug.cgi?id=1320
------- Additional Comments From fsteinel(a)flonet.net 2003-22-06 09:29 -------
Bug comments restored from Gmane.org:
The internal GUI engine of Jade does complete top down drawing of a window and
all its children in the same pass. To draw a textbox, the following logic is called:
::SetViewportOrgEx(hdc, rect.left, rect.top, NULL);
::SendMessage(hwnd, WM_PRINTCLIENT, (WPARAM)hdc, PRF_CLIENT | PRF_ERASEBKGND);
Under Wine, this does not produce any visible output.
------- Additional Comments From mike <at> theoretic.com 2003-03-30 15:32 -------
Can you please produce a test case for this behaviour, or make available your
application for testing?
--
Configure bugmail: http://bugs.winehq.com/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.