http://bugs.winehq.com/show_bug.cgi?id=1114
Summary: Winrar2.90/3.00: Comboex doesn't trigger a event when
you mouse-click in some value of it
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-patches
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: clozano(a)andago.com
It is easy of check, install winrar 2.90/3.00, click in the combo (you need a
version of day 31/10/2002 or superior ;), and change the letter, and the listbox
will not get updated. It works fine in comctl32 native. But the listbox will get
updated if you press ENTER in the combobox value.
I did some hacking in it:
in comboex.c:
* case CBN_SELCHANGE:
if i add this 2 lines: (before of the SendMessageW)
+ cbeend.iWhy = CBENF_RETURN;
+ COMBOEX_NotifyEndEdit (infoPtr, &cbeend, NULL);
return SendMessageW (parent, WM_COMMAND, wParam,
(LPARAM)infoPtr->hwndSelf);
Then it works Ok, but i am sure that it is a hack.
Regards,
Carlos.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1114>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1113
------- Additional Comments From dclark(a)akamail.com 2002-10-31 14:19 -------
Quite right. I see that now.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1113>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1113
------- Additional Comments From joern(a)sierwald.com 2002-10-31 13:50 -------
Sorry, but this is not what I meant. The destination directory does exist
already. The problem is that the destination ends with a '\' sign. Windows
would append the actual filename to the destination and try to open that file.
The resulting filename would be C:\\Program
Files\\Borland\\InterBase\\ibinstall.dll". But WINE doesn't do that.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1113>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1113
------- Additional Comments From dclark(a)akamail.com 2002-10-31 13:39 -------
In this case it is a documented feature:
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/fileio/bas…
Go down near the bottom to the header "Directories", and it says "An application
cannot create a directory with CreateFile; it must call CreateDirectory or
CreateDirectoryEx to create a directory."
And indeed, running on WinNT, if there is no such directory, this call sets the
LastError to ERROR_INVALID_NAME. I have seen another program that expects that
and then makes a call to create the directory.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1113>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1113
Summary: kernel32.CopyFileW failure
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: joern(a)sierwald.com
Hi everybody.
I was using build 20021007, that was not available to select for "version", on
Redhat 7.3. I tried to install the Interbase (an SQL database from Borland)
client and the installer reported that it could not copy any of the files
from the install subdirectory to the destination. Installation failed.
I managed to produce this debug output from wine:
08073ed8:Call kernel32.CopyFileW(402af0f8
L"C:\\ib_install\\client\\ibinstall.dll",402af150 L"C:\\Program
Files\\Borland\\InterBase\\",00000000) ret=4131ee2f
trace:file:CopyFileW L"C:\\ib_install\\client\\ibinstall.dll" -> L"C:\\Program
Files\\Borland\\InterBase\\"
trace:file:CreateFileW L"C:\\ib_install\\client\\ibinstall.dll" GENERIC_READ
FILE_SHARE_READ FILE_SHARE_WRITE OPEN_EXISTING attributes 0x0
trace:file:CreateFileW returning 00000054
trace:file:GetFileInformationByHandle 00000054
trace:file:CreateFileW L"C:\\Program Files\\Borland\\InterBase\\" GENERIC_WRITE
FILE_SHARE_READ FILE_SHARE_WRITE CREATE_ALWAYS attributes 0x20
warn:file:FILE_CreateFile Unable to create file '/usr/share/wine-c/Program
Files/Borland/InterBase' (GLE 82)
trace:file:CreateFileW returning ffffffff
warn:file:CopyFileW Unable to open dest L"C:\\Program
Files\\Borland\\InterBase\\"
08073ed8:Ret kernel32.CopyFileW() retval=00000000 ret=4131ee2f
What I can see here is that the destination is not a file name (as it is
supposed to be) but the name of a subdirectory. WINE does not like that.
The installer works flawlessly on any known windows platform, this
looks like an undocumented feature of windows to me.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1113>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1111
------- Additional Comments From unicorn(a)lysator.liu.se 2002-10-31 12:18 -------
I didn't look in the FAQ. However, as you can see, my original description
of the problem describes that I tried a very similar solution already (with
symlinks to all files on the two CDs instead of copying the files). Now I
have tried copying the files to a single directory as well, and I still get
the same problem with the installer looping over the question to insert CD
two.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1111>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1111
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |normal
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-31 10:33 -------
A severity of blocker would be if wine would not compile or run
Did you look at this in the FAQ database
http://www.winehq.org/cgi-bin/fom?_highlightWords=cdrom&file=223
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1111>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-31 08:41 -------
tested patch, it didnt resolve the problem, but it was a step closer. he
submitted another patch but i havent had a chance to test it out yet.. i will
do that tonight and post the results. both patches have been committed to CVS
already...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1111
------- Additional Comments From johane(a)lysator.liu.se 2002-10-31 04:40 -------
I don't think severity means the impact on the application in question as much
as the impact on the component. Can anyone confirm those thoughts?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1111>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=48
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 20:34 -------
Wine Win98
SM_CYVTHUMB 15 16 See Note 1
SM_CXHTHUMB 15 16 See Note 1
SM_CXSMSIZE 15 13 Hard Coded at 15 also used for SM_CYSMSIZE
SM_CYMAXIMIZED sh-5 sh+8 SM_CYSCREEN - 45 see Note 2
SM_CXMENUCHECK 14 13 Hard Coded at 14
SM_CYMENUCHECK 14 13 Hard Coded at 14
Note 1. when winelook is greater than win31 These values are gotten indirectly
from the registry and 1 is added to the value when it shouldn't AFAICT
Note 2. sysMetrics[SM_CYSCREEN] = GetDeviceCaps( hdc, VERTRES )
Do we care very much about sysmetrics for winelook win31 if not the following
patch should close this bug. If you want I could doa patch using checks for
winelook > win31
Index: sysmetrics.c
===================================================================
RCS file: /home/wine/wine/windows/sysmetrics.c,v
retrieving revision 1.30
diff -u -r1.30 sysmetrics.c
--- sysmetrics.c 28 Aug 2002 00:54:53 -0000 1.30
+++ sysmetrics.c 31 Oct 2002 02:29:30 -0000
@@ -163,7 +163,7 @@
sysMetrics[SM_WINE_BPP] = GetDeviceCaps( hdc, BITSPIXEL );
sysMetrics[SM_CXBORDER] = 1;
sysMetrics[SM_CYBORDER] = sysMetrics[SM_CXBORDER];
- sysMetrics[SM_CYVTHUMB] = sysMetrics[SM_CXVSCROLL] - 1;
+ sysMetrics[SM_CYVTHUMB] = sysMetrics[SM_CXVSCROLL];
sysMetrics[SM_CXHTHUMB] = sysMetrics[SM_CYVTHUMB];
sysMetrics[SM_CXICON] = 32;
sysMetrics[SM_CYICON] = 32;
@@ -220,8 +220,8 @@
sysMetrics[SM_CXSMICON] = sysMetrics[SM_CYSIZE] - (sysMetrics[SM_CYSIZE] % 2);
sysMetrics[SM_CYSMICON] = sysMetrics[SM_CXSMICON];
sysMetrics[SM_CYSMCAPTION] = 16;
- sysMetrics[SM_CXSMSIZE] = 15;
- sysMetrics[SM_CYSMSIZE] = sysMetrics[SM_CXSMSIZE];
+ sysMetrics[SM_CXSMSIZE] = 13;
+ sysMetrics[SM_CYSMSIZE] = 15;
sysMetrics[SM_CXMENUSIZE] = sysMetrics[SM_CYMENU] - 1;
sysMetrics[SM_CYMENUSIZE] = sysMetrics[SM_CXMENUSIZE];
@@ -238,7 +238,7 @@
sysMetrics[SM_CXMAXIMIZED] =
sysMetrics[SM_CXSCREEN] + 2 * sysMetrics[SM_CXFRAME];
sysMetrics[SM_CYMAXIMIZED] =
-
sysMetrics[SM_CYSCREEN] - 45;
+
sysMetrics[SM_CYSCREEN] - 32;
sysMetrics[SM_NETWORK] = 3;
/* For the following: 0 = ok, 1 = failsafe, 2 = failsafe + network */
@@ -246,8 +246,8 @@
sysMetrics[SM_CXDRAG] = 2;
sysMetrics[SM_CYDRAG] = 2;
- sysMetrics[SM_CXMENUCHECK] = 14;
- sysMetrics[SM_CYMENUCHECK] = 14;
+ sysMetrics[SM_CXMENUCHECK] = 13;
+ sysMetrics[SM_CYMENUCHECK] = 13;
/* FIXME: Should check the type of processor for the following */
sysMetrics[SM_SLOWMACHINE] = 0;
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=48>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1095
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 14:09 -------
I have seen this kind of problem with other programs as well. Please have a look
at bug 885 Duane Clark and myself tried to nail it down without any real
success. Another set of eyes might not hurt. There is also a program that
displays this message that is downloadable it can be found at bug 911. also If
you could add a screenshot of the screen corruption that would be a start.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1095>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1111
Summary: Installer loops when asking for second CD
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: unicorn(a)lysator.liu.se
I'm trying to install the "Birds of the World" database (see
http://www.birdsoftheworld.org/) which is a FileMaker Pro
application. It comes on two CDs. The installation is done
with InstallShield.
I get through the installation of the first CD without any
obvious problems (lots of messages on the console, but all
Windows-related windows seem fine). After a while, I get a
dialog the says "Please insert the disk: 2". I do this,
Nautilus mounts it for me, and I press OK. The dialog goes
away, and immediately comes back with the same text. Repeat
until boring.
For each iteration, I get the following in the console:
fixme:cdrom:CDROM_GetStatusCode Unmapped error code 2: No such file or directory
fixme:cdrom:CDROM_GetStatusCode Unmapped error code 2: No such file or directory
fixme:cdrom:CDROM_Open Can't open configured CD-ROM drive at M:\ (device
/dev/sr0): No such file or directory
fixme:cdrom:CDROM_GetStatusCode Unmapped error code 2: No such file or directory
fixme:cdrom:CDROM_Open Can't open configured CD-ROM drive at M:\ (device
/dev/sr0): No such file or directory
fixme:cdrom:CDROM_GetStatusCode Unmapped error code 2: No such file or directory
Since I happen to have two CD drives, I tried to cheat by creating a
"Drive D" CD for Wine to read from which is a directory on my HD with
symlinks to all files on both the CDs, but that didn't help either.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1111>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=976
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:43 -------
Resolving as invalid (not a bug) thanks guys..
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=976>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=969
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:40 -------
Verifying as per reportes comments
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=969>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=821
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:33 -------
Verifying as per reporters comments
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=821>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=548
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:28 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=548>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=544
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=544>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=541
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:27 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=541>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=539
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:26 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=539>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=534
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:23 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=534>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=533
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:22 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=533>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=532
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:21 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=532>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=508
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:19 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=508>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=507
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:19 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=507>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=500
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:18 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=500>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=488
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:16 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=488>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=486
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:15 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=486>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=484
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:14 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=484>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=480
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 13:12 -------
Verifying
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=480>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=129
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-30 13:00 -------
I will get right on it...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=129>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=413
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 12:53 -------
I think that it should be safe to resolve this one.
Marking as fixed
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=413>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=392
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |VERIFIED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 12:50 -------
Verifying as per reporters comments
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=392>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=129
------- Additional Comments From tony_lambregts(a)telusplanet.net 2002-10-30 12:29 -------
Dustin:
Have you had a chance to check this out? Is it downloadable? If so could we have
a url?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=129>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1096
lz71(a)libero.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From lz71(a)libero.it 2002-10-30 12:20 -------
I have upgraded my RedHat 7.3 to 8.0 and the font problem seems to be
solved :|
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1096>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1095
lz71(a)libero.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
Resolution|WORKSFORME |
------- Additional Comments From lz71(a)libero.it 2002-10-30 12:10 -------
Follow the error message from wine when I run REBEXE.EXE (Star Wars Rebellion)
using RedHat 8.0 i386:
fixme:bitblt:X11DRV_BitBlt potential optimization - client-side DIB copy
:(
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1095>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1095
lz71(a)libero.it changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |blocker
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
Summary|Star Wars Rebbelion - planet|Game Star wars rebellion->
|window are not completly |fixme:bitblt:X11DRV_BitBlt
|drawed |potential optimization -
| |client-side DIB copy
------- Additional Comments From lz71(a)libero.it 2002-10-30 12:02 -------
I add the correct error message from wine about REBEXE.EXE :
fixme:bitblt:X11DRV_BitBlt potential optimization - client-side DIB copy
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1095>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1110
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-10-30 11:09 -------
20010112 is *WAY* too old. Please try with a current release, and I'm sure it'll
be gone immediately ;)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1110>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1109
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-10-30 11:07 -------
I guess this bug is invalid, since I suspect that the reporter isn't using
"win95" as the "Filesystem" mode setting (case-*insensitive* file handling)
in the config file.
Feel free to reopen it in case you *are* using "win95" FS mode and for some
reason it really doesn't properly handle filename case sensitivity.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1109>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1110
Summary: Redraw of buttons
Product: Wine
Version: 20010112
Platform: PC
OS/Version: Windows 98
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: vanoubi(a)students.hale.wa.edu.au
When using ModPlug Tracker (http://www.modplug.com) under wine (and any window
manager), changing tabs does not redraw the various components on these tabs
(buttons, grids, etc.). In order to view them, I have to force a refresh of the
client window (usually by shading and unshading the window - I'm lazy :) ).
Needless to say, this makes any work done in this program fairly time-consuming.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1110>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1109
Summary: Case Insensitivity causes Files not to be found
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: kyethespy(a)liquid2k.com
Some installers, when running in wine, install items with the correct case -
but for some reason wine doesn't keep the correct case, and makes it all
lowercase.
This has caused problems in some installers I have run.
One example is Family Tree Maker 9.0
- This installer creates a file called TextEditor.dll - but when it is
installed, it ends up being called texteditor.dll (note the lack of capitals)
- and Family Tree maker gets confused at that.
I realise that most people will not have this application - but i'm sure there
are other examples around.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1109>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=976
------- Additional Comments From asd(a)suespammers.org 2002-10-29 23:06 -------
FYI: I am using Debian as well, and the solution from Daniel Bungert works for me.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=976>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1100
------- Additional Comments From rbheineke(a)charter.net 2002-10-29 16:00 -------
After going through /usr/src/wine and verifying that there is no problem because
of a cd command, /usr/src/wine/programs/regedit/regedit was checked to see there
is something wrong with the launch of wine.
Apparently a number of activities have taken place to make wine launchable from
within the source directories. The following message suggests that launching
from /usr/src/wine near the end of the script
/usr/src/wine/programs/regedit/regedit is not being properly handled:
Warning: could not find wine config [Drive x] entry for current working
directory /usr/src/wine; starting in windows directory.
Is the intention to launch wine from /usr/src/wine without changing dierctory to
the windows directory?
Then this message appears:
/usr/src/wine/miscemu/wine: cannot find 'programs/regedit/regedit.exe.so'
/usr/src/wine/programs/regedit/regedit.exe.so does indeed exist. Is there a
broken link that is missing here?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1100>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-29 15:41 -------
Dimi sent a patch to (hopefully) correct this,I will test it tonight and post
the results then or tomorrow, whichever...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1104
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |dpaun(a)rogers.com
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1104>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1105
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |dpaun(a)rogers.com
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1105>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1106
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |dpaun(a)rogers.com
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1106>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1107
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |dpaun(a)rogers.com
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1107>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1108
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |dpaun(a)rogers.com
Status|NEW |ASSIGNED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1108>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1108
Summary: ListView: Selected item jumps left
Product: Wine
Version: CVS
Platform: PC
OS/Version: Windows 98
Status: NEW
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fgouget(a)codeweavers.com
This is best viewed in open dialogs when they are not in report mode.
Often items in the rightmost column seems fully visible. However clicking on
such an item causes it to jump to the left. Of course the reason is that the
listview code considers that the item was not fully visible and thus scrolls
left by one column to make it fully visible.
However I think this can be confusing. Also, this does not appear to be the
behavior on Windows (although that may have changed in more recent comctl32
revisions), making it even more confusing.
So I propose to select the item and not scroll left even if the item is not
fully visible.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1108>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1107
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-29 03:27 -------
Created an attachment (id=323)
Edit screenshot
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1107>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1107
Summary: ListViews: Editing does not erase the background
Product: Wine
Version: CVS
Platform: PC
OS/Version: Windows 98
Status: NEW
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fgouget(a)codeweavers.com
This can be viewed in any listview in report mode, for instance by putting an
open dialog in listview mode.
When editing an item (e.g. in the Open dialog), the old value of the item is not
erased and will appear behind the said item. See upcoming screenshot.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1107>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1106
Summary: Ctrl+Space in ListViews
Product: Wine
Version: CVS
Platform: PC
OS/Version: Windows 98
Status: NEW
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fgouget(a)codeweavers.com
This can be reproduced in any listview in report mode, for instance by putting an
open dialog in listview mode or using WinZip.
When moving using Ctrl+Up/Down Arrow (see bug 1105), space should be
(de)selecting the current item. That does not seem to work either. Actually,
check on windows whether this is space or on Ctrl+Space. Neither works in Wine.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1106>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1105
Summary: Ctrl-Up/Down in ListViews
Product: Wine
Version: CVS
Platform: PC
OS/Version: Windows 98
Status: NEW
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fgouget(a)codeweavers.com
This can be viewed in any listview in report mode, for instance by putting an
open dialog in listview mode or using WinZip.
Ctrl+Up/Down Arrow does not seem to work. More precisely, the current position
of the cursor is not shown in any way although a slight flicker gives us a hint
that the cursor really is moving.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1105>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1104
Summary: PageUp/PageDown in ListViews
Product: Wine
Version: 20010112
Platform: PC
OS/Version: Windows 98
Status: NEW
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: fgouget(a)codeweavers.com
This can be viewed in any listview in report mode, for instance by putting an
open dialog in listview mode or using WinZip.
On Windows 'PageUp' moves the selection to the first visible item of the list.
Once on the first visible item of the page it moves us one page up, i.e. the
selected item becomes the last fully visible item of the list.
Instead in Wine the item preceeding the first visible item is selected when
typing PageUp.
Similarly on Windows PageDown moves the selection to the last _fully_ visible
item of the list. Once on the last _fully_ visible item of the list it scrolls
one page down, i.e. that item becomes the first visible item of the list. In
Wine PageDown moves us to the last (often partially) visible item, causing it to
scroll up a bit.
Not sure if this is a listiew issue or a srollbar issue.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1104>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=48
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-29 03:09 -------
Not a 100% match yet. Six more to go:
Wine Win98
SM_CYVTHUMB 15 16
SM_CXHTHUMB 15 16
SM_CXSMSIZE 15 13
SM_CYMAXIMIZED sh-5 sh+8
SM_CXMENUCHECK 14 13
SM_CYMENUCHECK 14 13
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=48>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1103
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |andi(a)rhlx01.fht-esslingen.de
Status|UNCONFIRMED |ASSIGNED
everconfirmed|0 |1
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-10-29 02:38 -------
Eh, nooooooo. That just looked like something that was meant for YOU to *fix* ;-)
(sorry, your statement really asked for such a reply ;-)
Hmm, ok, I'll look into it.
Thanks for the encouragement, BTW !
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1103>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1103
Summary: fixme:string:GetLocaleInfoA 'SENGLANGUAGE' is not
defined for your language (3CFF).
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tightcode(a)hotmail.com
fixme:string:GetLocaleInfoA 'SENGLANGUAGE' is not defined for your language
(3CFF).
Please define it in dlls/kernel/nls/YourLanguage.nls
and submit patch for inclusion into the next Wine release.
This just looked like something that was meant for you to see. Lovely
software, keep up the good work !
Cheers
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1103>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1102
Summary: Oracle Forms 4.5 Runtime No Function Keys
Product: Wine
Version: 20020904
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: justin.bennett(a)dynabrade.com
In Oracle FORMS 4.5 Runtime the runtime runs but the Function keys don't work.
Upon invocation the forms runtime reads a .res file with the key mappings. I
believe that wine can't handle the mapping of the windows keys in the .res file
to X keycodes. I know the file is being read, if I mispell the name I get can't
find file errors. No keys show up however in the runtime. These are the wine
errors I get, I believe this is related to the key mapping.
[jbennett@polo bin]$ /opt/wine/bin/wine f45run32.exe
m:\\emis2000\\prod\\forms\\mnu2000.fmx term=dk:windows
fixme:msvcrt:MSVCRT_signal (2 0x1):stub
fixme:msvcrt:MSVCRT_signal (2 0x40e90c30):stub
fixme:keyboard:X11DRV_GetKeyNameText (00000001,0x40625e50,49): unsupported key,
vkey=0000, ansi=0000
fixme:keyboard:X11DRV_GetKeyNameText (00000001,0x40625e50,49): unsupported key,
vkey=0000, ansi=0000
fixme:keyboard:X11DRV_GetKeyNameText (00000001,0x40625e50,49): unsupported key,
vkey=0000, ansi=0000
fixme:keyboard:X11DRV_GetKeyNameText (00000001,0x40625e50,49): unsupported key,
vkey=0000, ansi=0000
fixme:keyboard:X11DRV_GetKeyNameText (00000001,0x40625e50,49): unsupported key,
vkey=0000, ansi=0000
fixme:keyboard:X11DRV_GetKeyNameText (00000001,0x40625e50,49): unsupported key,
vkey=0000, ansi=0000
fixme:keyboard:X11DRV_GetKeyNameText (00000001,0x40625e50,49): unsupported key,
vkey=0000, ansi=0000
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1102>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=969
johane(a)lysator.liu.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From johane(a)lysator.liu.se 2002-10-28 05:05 -------
Done.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=969>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1062
------- Additional Comments From johane(a)lysator.liu.se 2002-10-28 05:04 -------
Oops. Resolved the wrong bug! Anyway, this too works since I updated wine and
recompiled the Linux kernel.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1062>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1062
johane(a)lysator.liu.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From johane(a)lysator.liu.se 2002-10-28 05:03 -------
There.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1062>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=969
johane(a)lysator.liu.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
Resolution|FIXED |
------- Additional Comments From johane(a)lysator.liu.se 2002-10-28 05:03 -------
Will change to WORKSFORME
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=969>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=957
johane(a)lysator.liu.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From johane(a)lysator.liu.se 2002-10-28 05:02 -------
Guess it was a build thing
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=957>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=882
johane(a)lysator.liu.se changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.com |johane(a)lysator.liu.se
Status|NEW |ASSIGNED
------- Additional Comments From johane(a)lysator.liu.se 2002-10-28 05:01 -------
In the main menu, the text is blue-transparent on blue-transparent background.
In the rest of the game, the text is black.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=882>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
** This e-mail has been automatically generated.
** by: http://bugs.winehq.com/
Weekly report for wine-bugs(a)winehq.com
Bug List
-------------------------------------------------------------------------
Id Status Desc
-------------------------------------------------------------------------
11 NEW StrokePath ignores PS_JOIN_xxx
26 NEW StrokeAndFillPath doesn't fill paths on EMF
48 NEW PrgWin95/98: System metrics differ from the Win9x value
50 NEW PrgWin95: Text justification needs beefing up
52 NEW PrgWin95: Problems with access to the root window
54 NEW PrgWin95: Wrong background for checkboxes, radiobuttons
66 NEW PrgWin95: Custom cursor display bug
69 NEW Visual C++'s native COM support
78 NEW Wine 1.0 Documentation Metabug - Winelib Users Guide
79 ASSI Wine 1.0 Documentation Metabug - Developers Guide
80 ASSI Wine 1.0 Documentation Metabug - FAQ
84 ASSI Rewrite documentation for Running Wine chapter
90 ASSI Compile Wine with -DSTRICT
96 NEW DLL Separation (MetaBug)
128 NEW Segfaults on trying to open fontdlg for AIM95
131 NEW TWGS.exe will not spawn children
134 NEW Age Of Empires II - says 'couldn't initialize graphics.
147 NEW Multi-column list widget: Double click on the header sh
151 NEW dialog focus handling is not correct (e.g. in installer
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
189 NEW The mouse wheel can scroll textboxes beyond the end
199 NEW Opening dialogues in nord modular editor causes lockup
204 NEW Lotus Notes attach/detach Soap Opera.
215 NEW x11drv errors with United Devices' agent
216 NEW selected text sometimes disappears
219 NEW realMyst and many other programs refuse to run.
223 NEW winemaker: Add support for the msvcrt headers
230 NEW winemaker: Extract more information from the source fil
231 NEW winemaker: Issue the warnings directly in the source
235 NEW IPX no longer works.
251 ASSI codeweavers-wine does not install regapi and uninstalle
252 NEW codeweavers-wine: winedbg is a dead link
259 NEW Garbled screen in Starcraft
265 NEW Copy pasting into a wine app works only once
267 NEW ddraw interface not found
268 NEW ddraw interface not recognized, surface flags not imple
271 NEW Westwood Monopoly: fixme:gdi:GetObjectType Magic nnnn n
280 NEW Windows Networking (WNet) is not implemented
284 NEW FillRect failing from STATIC_PaintTextfn
291 NEW wine systray and other windows not tall enough
292 NEW Keyboard focus not following
306 NEW Activeskin.ocx Unhandled exception: page fault on read
307 NEW Unable to launch GURPS Character GURU
308 NEW Firstclass: Mouse slows program to a crawl, but keyboar
312 NEW Trying to record audio makes Wine crash (msacm:widMappe
314 NEW Console application ("dos") doesn't recognize the retur
321 NEW msvcrt.printf does not support %S & %C
326 NEW Implement an Esd sound module
327 NEW CodeWeavers Preview Meta Bug
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
347 NEW err:midi:OSS_MidiInit ioctl on midi info for device 0 f
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
397 NEW System hangs while trying to play a sound
416 NEW Missings exports in winsocks
421 NEW Implement a DIB engine
422 NEW Make the registry loadable on demand
423 NEW Out of process COM
424 NEW DCOM support
425 NEW Network UNC path handling
429 NEW Lotus Notes R. 5.0.8 Modal windows don't close
430 NEW Edit Control doesn't not behave like Windows
443 NEW Cygwin fails to execute
461 NEW Implement processing for SystemParametersInfo actions w
468 NEW Error while accessing parallel port - DIVICE_Open Unkno
472 NEW GetAsyncKeyState problem. IGOR: Mouse Release Events No
517 NEW Could not load wprocs.dll
530 NEW Package the regression tests for Windows
531 NEW DLL Separation: ddraw from gdi32
535 NEW DLL Separation: wineps from gdi32
536 NEW DLL Separation: ttydrv from gdi32
537 NEW DLL Separation: ttydrv from user32
538 NEW DLL Separation: x11drv from gdi32
540 NEW DLL Separation: x11drv from user32 (clipboard)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
549 NEW DLL Separation: user32 from ntdll (misc)
556 NEW Reconcile the Windows and Wine spec files
563 NEW Right click does not call local menu
564 NEW Implement function GetGUIThreadInfo
567 NEW snmpapi.dll is not implemented
569 NEW widgets not being redrawn
572 NEW starcraft crashes in recent wine builds
587 NEW Create replacement of browser component (Internet Explo
588 NEW Word2000 - fixme:file:FindFirstChangeNotificationA this
595 NEW Age of Wonders fails with PE_fixup_imports
600 ASSI Add a Site Map
620 NEW dragging trillian's window causes the X server to crash
623 NEW Regression: IE can't view https links
626 NEW internet explorer crashes upon launch
633 NEW Non-text clipboard data from WINE to X
634 NEW Wine XIM
638 NEW Document Wine debugging channels
640 NEW Major graphic glitch in x11drv
650 NEW error messages when loading debugging information from
654 NEW Can't install ms money web edition from win98se install
663 NEW Publisher stops reading keyboard and mouse input.
691 NEW GDI32.dll.270 (GdiEntry13) unimplemented
692 NEW GDI32.dll.266 (GdiEntry1) unimplemented
704 NEW native w2k ole32.dll needs NTDLL.NtMapViewOfSection
705 NEW Running NVidia's ChameleonMark crashes at 0xdeadbeef
706 NEW Reg* functions are there twice
709 NEW riched32.dll needs to be improved a lot (was: Richedit
711 NEW Image Preview control is shrinking on Xnview
712 NEW Xnview Options window is not refreshed
719 NEW some controls does't work
729 NEW Shading of the Winamp equaliser and playlist windows do
735 NEW The WM_INPUTLANGCHANGE message is not send when switchi
741 NEW Debbuger window doesn't allow me to cut & paste
743 NEW WM_QUERYNEWPALETTE handling broken ? (was: Problem in w
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
757 NEW Sound bug: aRts driver (only sometimes - wodDsCreate Di
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
765 NEW PrgWin95: Off by one error in scrollbar position
768 NEW Wine crashes when starting Micrographic designer
770 NEW Halts during an install shield wizard installation with
778 NEW Compiler warnings for wine-20020605
786 NEW wrc gives parse error if resource nameID has quotes
792 NEW Display bug in WinZip Extract dialog
795 NEW Implement NtQuerySystemInformation
796 NEW rewrite PSAPI to use NtQuerySystemInformation
797 NEW Rewrite DirectX HAL interfaces
799 NEW wine debugger hidden behind wine games.
800 NEW Wine crashes immediately with privileged instruction ex
803 NEW virtualdub hangs up
804 NEW Wine + NTFS = crash :(
807 NEW PowerBuilder 6.0 generated applications crash accessing
813 NEW fixme:clipboard:GetClipboardSequenceNumber
814 NEW Add section on 'Implementing a new DLL' to Wine Develop
819 NEW Lotus Sametime Connect will not connect
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
832 NEW Add Direct3D support
833 NEW Add support for inferior function calls
834 NEW Add DWARF2 support
835 NEW Add support for the new PDB format
836 NEW Speed up PDB support
838 NEW winedbg: Add C++ support
839 NEW opengl window minimizes when the program makes another
840 NEW Negative values used by Baldur's Gate in DirectDrawSurf
845 NEW gcc Remote debugging
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
854 NEW ld: cannot find -lgdbm on compilation
858 NEW Segfault in WineEngInit () ( libgdi32.dll.so )
859 NEW Lotus Notes detach all does not work
860 NEW lotus approach terminates when create new database
861 NEW wine Fails to Initialize and start Yahoo! messenger.
862 NEW wine fails to load default skin for IncrediMail!!!!
863 NEW Listview report style shows right end of text not left
867 NEW err:clipping:CLIPPING_UpdateGCRegion and fixme:process:
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
871 NEW my application can't create an active X object
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 ASSI Win9xism in shell32 (MapSL)
876 NEW listview report style column alignment issues
877 NEW DXgrab is "weak" and can be shaken out of
878 NEW Icons arent transparent if Managed='Y'
881 NEW Mouse cursor not blanked in opengl game
882 NEW Alpha Centauri: Text does not show in the main screen m
885 NEW Screen Corruption in riven
888 NEW DXGrab can't be undone.
890 NEW Virtual Pages difference - Spotted with VirtualQuery()
891 NEW winemaker and winebuild compatibility problem in the .s
892 NEW Implement GetSystemInfo using CPUID
894 NEW Terragen running, 2nd level child window malfunction (?
897 NEW Winetest does not compile
898 NEW fixme:dc:GetDCEx not supported yet
899 NEW Bad focus messages on window creation
900 NEW Upgrade from 20020605 to 20020710 broke Orcad Caputre S
901 NEW sound
903 NEW PathIsURL returning true for invalid formats.
905 NEW Last character in network transmission being dropped
906 NEW Quicken Deluxe 99 dosen't work with Red Carpet release
910 NEW foreground is the same as background color in winmx / s
911 NEW Screen Corruption in Nord Modular Editor
919 NEW FlashFXP 1.4.3 crashes while trying to read "MZ" magic
923 NEW We should add default Explorer registry entries to avoi
927 NEW fixme:commctrl:FlatSB_SetScrollProp stub
928 NEW fixme:commctrl:InitializeFlatSB stub
929 NEW fixme:tab:TAB_WindowProc Unimplemented msg TCM_HIGHLIGH
933 NEW ttydrv needs a lot of improvement
934 NEW Cpu usage is always 100%
945 NEW Cannot install ColdFusion MX
952 NEW Wine and The Bat!
958 NEW OSS audio problems (err:wave:OSS_OpenDevice Can't set f
959 NEW ChooseFontA dialog never displays the script selection
962 NEW Unreal Tournament Editor does not work in wine
963 NEW Default values for wineconsole are not saved
965 NEW MaskBlt is not implemented
970 NEW Intermittent regression tests freeze, possibly due to t
972 NEW Implement urlmon.URLDownloadToCacheFileA
974 NEW Put translation infrastructure in place for various Win
986 ASSI OBDC.dll unimplemented
995 NEW shlfileop test fails on FreeBSD
996 NEW sock test fails onf FreeBSD
1001 NEW Define macros STATUS_ENDPOINT_CLOSED, STATUS_DISCONNECT
1005 NEW Attempts to retrieve live streaming updates with QuoteT
1007 NEW kernel32.dll.Heap32* functions unimplemented
1022 NEW OSS_MidiInit Synthesizer support MIDI in. Not supported
1037 NEW Remedy user GUI client generates this memory error
1039 NEW No keyboard in wcmd
1046 NEW FIXME:tab:TAB_WindowProc Unimplemented msg TCM_SETITEME
1062 NEW Immortal/unkillable process
1063 NEW Debugger fails to access program memory
1074 NEW DLoad.exe (Diablo II/LOD no-cd BNet Loader) returns err
1087 NEW hotspot in wrong position for hand cursor
1088 NEW Wine crashes for user not in /etc/passwd (LDAP authenti
1091 NEW ScrollWindowEx does not update invalidated are
1100 NEW Registry install failed. cannot find 'programs/regedit/
-------------------------------------------------------------------------
To get a list of all your bugs, you can use this URL (bookmark it if you like!):
http://bugs.winehq.com/buglist.cgi?assigned_to=wine-bugs@winehq.com
Or, you can use the general query page, at
http://bugs.winehq.com/query.cgi.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<%urlbase>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=413
------- Additional Comments From kyethespy(a)liquid2k.com 2002-10-27 23:22 -------
I think this should be closed now, shouldn't it - as InternetOpenUrlA is no
longer a stub.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=413>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1061
------- Additional Comments From kyethespy(a)liquid2k.com 2002-10-27 23:11 -------
Anyone? Surely someone still has 5.5!
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1061>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-27 19:05 -------
on the first debug log (the one for after the patch is committed) please ignore
the debugger message, unless you want me to get a backtrace too?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1097
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-27 19:01 -------
closing bug
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1097>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1097
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-27 19:00 -------
This is not a bug, it is the side effect of desired operation (allowing windows
programs (even malicious ones) to run on *nix. For more info, please subscribe
to wine-devel(a)winehq.com and join on the topic named Wine securityflaw.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1097>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1071
------- Additional Comments From tightcode(a)hotmail.com 2002-10-27 18:32 -------
I have the same setup (OS version, kernel version & wine version) as jeric,
however the bug is being produced from a different application. I installed "Le
Petit Robert v2.0". There were no troubles with the installation, however upon
trying to run the program, the splash screen opens while it spits the:
fixme:file:LockFile not implemented in server
fixme:file:LockFile not implemented in server
Warning: wine requests its own [...]
fixme:file:LockFile not implemented in server
fixme:file:UnlockFile not implemented in server
wine: Unhandled exception, starting debugger...
A possible common link between this and the MSAccess 2000 bug mentioned is that
this software is a french dictionnary and relies on a access format database to
store customized annotations.
Wine is excellent, thank you for the hard work you have put into it.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1071>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1071
tightcode(a)hotmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From tightcode(a)hotmail.com 2002-10-27 18:23 -------
*** This bug has been confirmed by popular vote. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1071>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-27 15:10 -------
Created an attachment (id=322)
DEbug output of +listview, +treeview (BEFORE PATCH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-27 15:06 -------
Created an attachment (id=321)
... and before
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-27 14:36 -------
Created an attachment (id=320)
The way the dialog looks after the patch
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-27 13:24 -------
The patch causing this regression is:
http://www.winehq.com/hypermail/wine-cvs/2002/03/0070.html
If anyone wants a screenshot of it the way it used to look (before this patch)
and the way it looks now (after this patch) let me know and I will post them.
Shoot I will post them anyways, in just a minute.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=542
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:37 -------
The following are gone:
CURSORICON_IconToCursor
WIN_InternalShowOwnedPopups
WIN_IsWindowDrawable
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=542>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=96
This bug depends on bug 541, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=96>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=541
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:35 -------
This one is gone.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=541>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=539
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:34 -------
These two are gone.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=539>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=96
This bug depends on bug 539, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=96>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=538
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:33 -------
The following are gone:
CLIPPING_IntersectVisRect
COLOR_IsSolid
COLOR_PaletteLookupExactIndex
COLOR_PaletteLookupPixel
DC_InitDC
FONT_TextMetricAToW
REGION_LPTODP
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=538>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=536
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:29 -------
Of the previous list, all that remains is:
./libttydrv.so: undefined reference to `InquireVisRgn16'
./libttydrv.so: undefined reference to `SaveVisRgn16'
./libttydrv.so: undefined reference to `SelectVisRgn16'
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=536>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=535
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:25 -------
Of the previous list, all that remains are the following:
./libwineps.so: undefined reference to `CloseJob16'
./libwineps.so: undefined reference to `DrvGetPrinterData16'
./libwineps.so: undefined reference to `DrvSetPrinterData16'
./libwineps.so: undefined reference to `OpenJob16'
./libwineps.so: undefined reference to `WriteSpool16'
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=535>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=533
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:21 -------
This one is gone.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=533>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=96
This bug depends on bug 533, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=96>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=532
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:21 -------
This one is gone.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=532>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=96
This bug depends on bug 532, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=96>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=544
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:19 -------
This one is gone.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=544>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=96
This bug depends on bug 544, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=96>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=546
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:18 -------
The following are done:
DOSMEM_BiosData
DOSMEM_BiosSysSeg
DOSMEM_MapDosToLinear
DOSMEM_MapRealToLinear
DOSMEM_SystemBase
DOSMEM_dpmi_seg
DOSMEM_dpmi_sel
DOSMEM_wrap_seg
DOSMEM_xms_seg
DOS_LOLSeg
MemManInfo16
PROFILE_GetWineIniString
TASK_GetCurrent
_LeaveWin16Lock
however there is a new one:
DOSMEM_GetDPMISegments
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=546>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=547
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:11 -------
The following are done:
BITMAP_CopyBitmap
BITMAP_GetWidthBytes
REGION_CropRgn
TranslateCharsetInfo
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=547>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=96
This bug depends on bug 548, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=96>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=548
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 18:07 -------
This one is gone.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=548>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=549
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 16:00 -------
All that remains of the list is:
./libuser32.so: undefined reference to `LOCAL_Alloc'
./libuser32.so: undefined reference to `LOCAL_Compact'
./libuser32.so: undefined reference to `LOCAL_CountFree'
./libuser32.so: undefined reference to `LOCAL_Free'
./libuser32.so: undefined reference to `LOCAL_HeapSize'
./libuser32.so: undefined reference to `LOCAL_Lock'
./libuser32.so: undefined reference to `LOCAL_ReAlloc'
./libuser32.so: undefined reference to `LOCAL_Size'
./libuser32.so: undefined reference to `LOCAL_Unlock'
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=549>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=534
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 15:58 -------
Yes, all these are gone so I am marking this bug as resolved.
The reason why you get a lot of errors when you remove gdi32 from the import
section is that, AFAIU, ttydrv should be allowed to call gdi32 but that it
should not call APIs that are not exported by the native gdi32.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=534>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=96
This bug depends on bug 534, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=96>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=551
------- Additional Comments From fgouget(a)codeweavers.com 2002-10-26 15:17 -------
These are gone:
SELECTOR_AllocBlock
SELECTOR_FreeBlock
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=551>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=534
------- Additional Comments From jaco(a)puxedo.org 2002-10-26 11:49 -------
Is this one still valid? As described here, it seems that some things have been
changed. However, removing "gdi32" from the import section does result in other
undefined external references.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=534>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=321
------- Additional Comments From jaco(a)puxedo.org 2002-10-26 08:45 -------
Patch submitted to wine-patches.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=321>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1100
------- Additional Comments From johane(a)lysator.liu.se 2002-10-25 05:19 -------
I was not quite clear there. I mean that I've experienced the problem myself.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1100>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1100
johane(a)lysator.liu.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From johane(a)lysator.liu.se 2002-10-25 03:37 -------
I saw it too.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1100>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=321
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-10-25 01:33 -------
Huh ? Ever heard of something called "DLL separation" ? ;-)
Anyway, many thanks for working on this !!
Please add a comment to each implementation where the two other implementations
can be found...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=321>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1101
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-10-25 01:28 -------
Nice picture, but that's unfortunately not quite what you'd expect...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1101>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=321
------- Additional Comments From jaco(a)puxedo.org 2002-10-25 00:07 -------
I'll grab this one, erm, I have grabbed this one... The first version of the
patch re-uses the code in user32 (and doesn't use user32 directly). I have
however found duplicated code in shlwapi and user32 and now msvcrt. Once the
first version of the patch is available, we will need to take a look at these
three to have one place/file in which to host these.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=321>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1101
Summary: Microfocus Net Express 3.0 installer start and stop
Product: Wine
Version: 20020904
Platform: PC
OS/Version: Windows 2000
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: cesar(a)liws.com.br
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1101>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1100
rbheineke(a)charter.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|test |wine-tools
------- Additional Comments From rbheineke(a)charter.net 2002-10-24 12:38 -------
When doing a clean cvs install for a Mandrake 9.0 PC without windows,
tools/install does not properly generate registry files. I keep the source in
/usr/src/wine. The messages I get are:
...(pruned for brevity)
Configuring Wine without Windows.
Some fake Windows directories must be created, to hold any .ini files, DLLs,
start menu entries, and other things your applications may need to install.
Where would you like your fake C drive to be placed?
(default is /home/heineke/c) /c
Configuring Wine for a no-windows install in /c...
Created /home/heineke/.wine/config using default Wine configuration.
You probably want to review the file, though.
Compiling regedit...
make: Nothing to be done for `all'.
Preparing to install default Wine registry entries...
Installing default Wine registry entries...
Warning: could not find wine config [Drive x] entry for current working
directory /usr/src/wine; starting in windows directory.
/usr/src/wine/miscemu/wine: cannot find 'programs/regedit/regedit.exe.so'
Registry install failed.
I saw a few people mention this problem and even a fix in the patches mailing
list. I could not find the fix in the patches mailing list. It also looks as
if these people thought it might be appropriate for a bug report.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1100>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1100
Summary: Registry install failed. cannot find
'programs/regedit/regedit.exe.so
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: rbheineke(a)charter.net
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1100>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1098
Summary: DGA2 error
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: b_enny(a)hotmail.com
When running a game (Neverwinter Nights or even NIVDIA's (windows) Treemark)
with the following options:
--debugmsg +x11drv
I get the following line error:
warn:x11drv:X11DRV_XF86DGA2_Init disabling XF86DGA2 (insufficient permissions?)
I have set all permissions to /dev/mem completely open and added myself to the
"mem" user group (and set back the original rights to /dev/mem, when doing the
latter).
So there should be sufficient permissions.
Searching in the internet gave only one other reference
(http://cwrulug.cwru.edu/pipermail/sigunix/2002-August/001065.html) to this
problem, but there was no answer to the problem. I emailed that person but I
didn't recieve a reply yet.
So I hope somebody here can solve this bug.
I took the following steps to install all things needed:
I use Mandrake 9.0 with XFree86 4.2.1 .
I have installed all Mesa-packages. After that I installed NVIDIA's 1.0-3123
drivers for my Geforce2 MX400 and made changes in XF86Config-4.
I enabled Alsa.
And I simply compiled Wine20021007 (downloaded tarball from
http://source.winehq.org/source/ANNOUNCE).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1098>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1097
Summary: WINE: A new place for KLEZ to play
Product: Wine
Version: unspecified
Platform: PC
URL: http://articles.linuxguru.net/view/198
OS/Version: All
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: tmpfreire(a)terra.com.br
http://articles.linuxguru.net/view/198
Article name:
WINE: A new place for KLEZ to play
The article on this URL points out a major issue on the [DEFAULT] configuration,
and proposes a fix. I believe this should be fixed before wine 1.0.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1097>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1096
Summary: Derive 5.05: input expression field font is wrong and
unreadable
Product: Wine
Version: CVS
Platform: PC
OS/Version: Windows ME
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: lz71(a)libero.it
- O.S. RedHat 7.3 (i386) -
In derive 5.05 (the best math assistant) the font used
in the input math expression field is unreadble and wrong.
It seems to me all fonts size don't match the real one of
windows (they are too small).
In the real windows the default font is "fixed" but in
wine it is a sort of "very small cursive" font.
I tried to change the default font but wine always use
the unreadable one. :(
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1096>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1095
Summary: Star Wars Rebbelion - planet window are not completly
drawed
Product: Wine
Version: CVS
Platform: PC
OS/Version: Windows ME
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: lz71(a)libero.it
Star wars rebellion (game) :
The installation works fine.
I run REBEXE.EXE and when I start a new game, the planets windows
are not completly drawed (the bottom is missing).
Wine (cvs version) shows me a "fixme bltbit stud" or a similar message
:(
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1095>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1094
Summary: Error loading Statusbar and ListView
Product: Wine
Version: 20020904
Platform: PC
OS/Version: All
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: cesar(a)liws.com.br
In Windows App developed with Microfocus NetExpress 3.0, when will load
Statusbar and LiwstView, Is showed a Messagebox without text with ok and cancel
buttons, if ok the app continue to work if cancel app stop.
The message repeat each title cell in ListView and 1 time with statusbar
the next msg occurs in this cases
fixme:hook:NotifyWinEvent (32780,0x0002002f,-4,1)-stub!
The next messages occurs other times, I dont work in it still
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
err:x11drv:empty_error_handler XID(02400740): BadMatch (invalid parameter
attributes)
[]'s
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1094>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1088
------- Additional Comments From bsmith3(a)charter.net 2002-10-23 08:26 -------
I'm running Mandrake 9.0. The glibc package version is 2.2.5-16mdk, but the
changelog on the RPM indicates that it's actually a CVS snapshot from 8/12/2002
(with a bunch of Mandrake patches, obviously).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1088>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1088
andi(a)rhlx01.fht-esslingen.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-10-22 17:57 -------
Hmm, sounds like our implementation of pthread_mutex_lock has a problem here
for some mysterious reason...
Which libc6 version do you have, BTW ?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1088>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1088
------- Additional Comments From bsmith3(a)charter.net 2002-10-22 14:55 -------
Created an attachment (id=318)
results of gdb backtrace
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1088>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1090
------- Additional Comments From depanofsky97(a)alumni.amherst.edu 2002-10-21 22:06 -------
This is not a problem with a bad glibc version. Although this problem will go
away when wine is re-compiled with the new glibc installed, the problem is in
the wine source, not in glibc. From the glibc FAQ 3.12:
ISO C states that identifiers beginning with an underscore are internal to
the libc. An application program normally shouldn't use those internal
interfaces (there are exceptions, e.g. __ivaliduser). If a program uses
these interfaces, it's broken. These internal interfaces might change
between glibc releases or dropped completely.
The problem with a wine linked with glibc-2.2 not running with glibc-2.3 is
because wine uses __libc_fork in scheduler/pthread.c and apparently, this
interface has finally been dropped. I immagine that since __libc_fork is only
used if (__GLIBC__ == 2) && (__GLIBC_MINOR__ >= 1) && defined(HAVE___LIBC_FORK)
that wine can do without this hack.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1090>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1093
Summary: crash when running Shake 2.4 and workaround
Product: Wine
Version: 20020904
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: chicorico81(a)hotmail.com
I'm running NothingReal's (now apple's) Shake 2.4 under wine 20021007. I can
cause a crash by launching shake, creating a "colorcorrect" node (under the
"color" tab bottom left), and then clicking on the "curves" tab near the bottom
right of the screen. The crash occurs in graphics/x11drv/dib.c in
X11DRV_DIB_Convert_888_to_0888_asis(). As a workaround, if I add code at the
beginning of that function to return if srclinebytes < 0, then everything works
fine.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1093>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
------- Additional Comments From mstefani(a)redhat.com 2002-10-21 16:38 -------
Well keep it until the whole wine compiles with "-DSTRICT" turned on (that means
until no -DWINE_NO_STRICT remains in any dll). I've closed all remaining
"Convert $handle to a void*" bug reports but we need to open now a bug for every
dll that defines WINE_NO_STRICT.
To make a dll compile with -DSTRICT do the following:
- remove -DWINE_NO_STRICT from the dll's Makefile.in and regenerate the Makefile
- do a make clean in that dll
- do a make and fix all warnings, even the "int format, HANDLE arg" warnings. To
fix wrong handle conversions, use the tips given in this bug report before.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1092
------- Additional Comments From news.tr(a)myrealbox.com 2002-10-21 12:40 -------
Hello
I have same problems at Suse 8.0 too.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1092>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=507
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=507>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=502
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=502>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=500
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=500>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=489
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=489>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=488
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=488>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=486
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=486>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=484
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=484>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=483
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=483>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=508
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From mstefani(a)redhat.com 2002-10-21 12:13 -------
This bug report isn't valid anymore.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=508>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=480
This bug depends on bug 508, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=480>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 507, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=507
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From mstefani(a)redhat.com 2002-10-21 12:13 -------
This bug report isn't valid anymore.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=507>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 500, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=500
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From mstefani(a)redhat.com 2002-10-21 12:13 -------
This bug report isn't valid anymore.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=500>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 499, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 488, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=488
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From mstefani(a)redhat.com 2002-10-21 12:12 -------
This bug report isn't valid anymore.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=488>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 486, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=486
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From mstefani(a)redhat.com 2002-10-21 12:11 -------
This bug report isn't valid anymore.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=486>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 484, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=484
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From mstefani(a)redhat.com 2002-10-21 12:11 -------
This bug report isn't valid anymore.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=484>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 481, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
This bug depends on bug 480, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=480
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |INVALID
------- Additional Comments From mstefani(a)redhat.com 2002-10-21 12:09 -------
This bug report isn't valid anymore.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=480>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=347
david_s_02330(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
everconfirmed|0 |1
------- Additional Comments From david_s_02330(a)yahoo.com 2002-10-21 06:16 -------
*** This bug has been confirmed by popular vote. ***
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=347>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1092
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-10-21 06:14 -------
CC Aric Stewart, since he's THE expert :-)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1092>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1092
Summary: Wine does not work on Turkish enabled Linux systems
Product: Wine
Version: unspecified
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: smalkim(a)netscape.net
Wine doesn't work on Turkish language enabled Linux systems, when you change
the language settings to English, Wine works fine. Tested on SuSe 7.1, 7.3
Mandrake 8.2. Tried almost all versions of Wine.
Wine generally complains about "display.dll" file, but I think the main problem
is Turkish specific characters preventing access to these files. When you
switched back to English, there is no problem. I remember there was an old
problem with "I" character with dot, or dotless "i" character also in previous
versions of Windows (such as 3.0 and 3.11).
"i" is lowercase, capital version of this character is "Ý" in Turkish (if you
can not see this character it is an "I" character with a dot above).
And there is a dotless "ý" character (if you can not see this character
properly, it is an "i" letter without dot above) ,and the capital version of it
is "I".
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1092>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
** This e-mail has been automatically generated.
** by: http://bugs.winehq.com/
Weekly report for wine-bugs(a)winehq.com
Bug List
-------------------------------------------------------------------------
Id Status Desc
-------------------------------------------------------------------------
11 NEW StrokePath ignores PS_JOIN_xxx
26 NEW StrokeAndFillPath doesn't fill paths on EMF
48 NEW PrgWin95/98: System metrics differ from the Win9x value
50 NEW PrgWin95: Text justification needs beefing up
52 NEW PrgWin95: Problems with access to the root window
54 NEW PrgWin95: Wrong background for checkboxes, radiobuttons
66 NEW PrgWin95: Custom cursor display bug
69 NEW Visual C++'s native COM support
78 NEW Wine 1.0 Documentation Metabug - Winelib Users Guide
79 ASSI Wine 1.0 Documentation Metabug - Developers Guide
80 ASSI Wine 1.0 Documentation Metabug - FAQ
84 ASSI Rewrite documentation for Running Wine chapter
90 ASSI Compile Wine with -DSTRICT
96 NEW DLL Separation (MetaBug)
128 NEW Segfaults on trying to open fontdlg for AIM95
131 NEW TWGS.exe will not spawn children
134 NEW Age Of Empires II - says 'couldn't initialize graphics.
147 NEW Multi-column list widget: Double click on the header sh
151 NEW dialog focus handling is not correct (e.g. in installer
168 NEW Mouse and Keyboard input die upon entering a game
176 NEW Implement an SDL back-end
189 NEW The mouse wheel can scroll textboxes beyond the end
199 NEW Opening dialogues in nord modular editor causes lockup
204 NEW Lotus Notes attach/detach Soap Opera.
215 NEW x11drv errors with United Devices' agent
216 NEW selected text sometimes disappears
219 NEW realMyst and many other programs refuse to run.
223 NEW winemaker: Add support for the msvcrt headers
230 NEW winemaker: Extract more information from the source fil
231 NEW winemaker: Issue the warnings directly in the source
235 NEW IPX no longer works.
251 ASSI codeweavers-wine does not install regapi and uninstalle
252 NEW codeweavers-wine: winedbg is a dead link
259 NEW Garbled screen in Starcraft
265 NEW Copy pasting into a wine app works only once
267 NEW ddraw interface not found
268 NEW ddraw interface not recognized, surface flags not imple
271 NEW Westwood Monopoly: fixme:gdi:GetObjectType Magic nnnn n
280 NEW Windows Networking (WNet) is not implemented
284 NEW FillRect failing from STATIC_PaintTextfn
291 NEW wine systray and other windows not tall enough
292 NEW Keyboard focus not following
306 NEW Activeskin.ocx Unhandled exception: page fault on read
307 NEW Unable to launch GURPS Character GURU
308 NEW Firstclass: Mouse slows program to a crawl, but keyboar
312 NEW Trying to record audio makes Wine crash (msacm:widMappe
314 NEW Console application ("dos") doesn't recognize the retur
321 NEW msvcrt.printf does not support %S & %C
326 NEW Implement an Esd sound module
327 NEW CodeWeavers Preview Meta Bug
335 NEW Need Microphone and mic volume Support
341 NEW Running Half Life Game Fails
343 NEW file open / save in MS word fails....
351 NEW TNM (wrestling simulator) installer crashes with "Progr
373 NEW Unhandled exception in DIALOG_CreateIndirect
387 NEW Firstclass: Mouse behaves erratically
397 NEW System hangs while trying to play a sound
413 NEW age of camelot needs wininet.InternetOpenUrlA
416 NEW Missings exports in winsocks
421 NEW Implement a DIB engine
422 NEW Make the registry loadable on demand
423 NEW Out of process COM
424 NEW DCOM support
425 NEW Network UNC path handling
429 NEW Lotus Notes R. 5.0.8 Modal windows don't close
430 NEW Edit Control doesn't not behave like Windows
443 NEW Cygwin fails to execute
461 NEW Implement processing for SystemParametersInfo actions w
468 NEW Error while accessing parallel port - DIVICE_Open Unkno
472 NEW GetAsyncKeyState problem. IGOR: Mouse Release Events No
480 NEW Convert HBITMAP to a void* (references: 311)
484 NEW Convert HFONT to a void* (references: 200)
486 NEW Convert HINSTANCE to a void* (references: 308)
488 NEW Convert HMENU to a void* (references: 279)
500 NEW Convert HRGN to a void* (references: 179)
507 NEW Convert HDC to a void* (references: 804)
508 NEW Convert HANDLE to a void* (references: 1219)
517 NEW Could not load wprocs.dll
530 NEW Package the regression tests for Windows
531 NEW DLL Separation: ddraw from gdi32
532 NEW DLL Separation: gdi32 from ttydrv, x11drv (BITMAP_Drive
533 NEW DLL Separation: gdi32 from ttydrv, x11drv (PALETTE_Driv
534 NEW DLL Separation: gdi32 from ttydrv, x11drv (color init)
535 NEW DLL Separation: wineps from gdi32
536 NEW DLL Separation: ttydrv from gdi32
537 NEW DLL Separation: ttydrv from user32
538 NEW DLL Separation: x11drv from gdi32
539 NEW DLL Separation: x11drv from user32 (caret)
540 NEW DLL Separation: x11drv from user32 (clipboard)
541 NEW DLL Separation: x11drv from user32 (drag and drop)
542 NEW DLL Separation: x11drv from user32 (misc)
543 NEW DLL Separation: x11drv from ntdll (FILE_DupUnixHandle)
544 NEW DLL Separation: x11drv from ntdll (Options)
545 NEW DLL Separation: x11drv from ntdll (VIRTUAL_SetFaultHand
546 NEW DLL Separation: winedos from ntdll
547 NEW DLL Separation: user32 from gdi32
548 NEW DLL Separation: user32 from ntdll (ATOM_Init)
549 NEW DLL Separation: user32 from ntdll (misc)
556 NEW Reconcile the Windows and Wine spec files
563 NEW Right click does not call local menu
564 NEW Implement function GetGUIThreadInfo
567 NEW snmpapi.dll is not implemented
569 NEW widgets not being redrawn
572 NEW starcraft crashes in recent wine builds
587 NEW Create replacement of browser component (Internet Explo
588 NEW Word2000 - fixme:file:FindFirstChangeNotificationA this
595 NEW Age of Wonders fails with PE_fixup_imports
600 ASSI Add a Site Map
620 NEW dragging trillian's window causes the X server to crash
623 NEW Regression: IE can't view https links
626 NEW internet explorer crashes upon launch
633 NEW Non-text clipboard data from WINE to X
634 NEW Wine XIM
638 NEW Document Wine debugging channels
640 NEW Major graphic glitch in x11drv
650 NEW error messages when loading debugging information from
654 NEW Can't install ms money web edition from win98se install
663 NEW Publisher stops reading keyboard and mouse input.
691 NEW GDI32.dll.270 (GdiEntry13) unimplemented
692 NEW GDI32.dll.266 (GdiEntry1) unimplemented
704 NEW native w2k ole32.dll needs NTDLL.NtMapViewOfSection
705 NEW Running NVidia's ChameleonMark crashes at 0xdeadbeef
706 NEW Reg* functions are there twice
709 NEW riched32.dll needs to be improved a lot (was: Richedit
711 NEW Image Preview control is shrinking on Xnview
712 NEW Xnview Options window is not refreshed
719 NEW some controls does't work
729 NEW Shading of the Winamp equaliser and playlist windows do
735 NEW The WM_INPUTLANGCHANGE message is not send when switchi
741 NEW Debbuger window doesn't allow me to cut & paste
743 NEW WM_QUERYNEWPALETTE handling broken ? (was: Problem in w
750 NEW Radmin doesn't want to start the second time (says it h
756 NEW msvcrt.fwscanf, swscanf, wscanf unimplemented
757 NEW Sound bug: aRts driver (only sometimes - wodDsCreate Di
758 NEW Menu/combo-box-functionality in managed mode.
763 NEW AOL 7.0 crashes after spewing the same error message
765 NEW PrgWin95: Off by one error in scrollbar position
768 NEW Wine crashes when starting Micrographic designer
770 NEW Halts during an install shield wizard installation with
778 NEW Compiler warnings for wine-20020605
786 NEW wrc gives parse error if resource nameID has quotes
792 NEW Display bug in WinZip Extract dialog
795 NEW Implement NtQuerySystemInformation
796 NEW rewrite PSAPI to use NtQuerySystemInformation
797 NEW Rewrite DirectX HAL interfaces
799 NEW wine debugger hidden behind wine games.
800 NEW Wine crashes immediately with privileged instruction ex
803 NEW virtualdub hangs up
804 NEW Wine + NTFS = crash :(
807 NEW PowerBuilder 6.0 generated applications crash accessing
813 NEW fixme:clipboard:GetClipboardSequenceNumber
814 NEW Add section on 'Implementing a new DLL' to Wine Develop
819 NEW Lotus Sametime Connect will not connect
824 NEW \0 character is added to REG_MULTI_SZ registry values
825 NEW Window in modal mode does not receive mouse and keyboar
832 NEW Add Direct3D support
833 NEW Add support for inferior function calls
834 NEW Add DWARF2 support
835 NEW Add support for the new PDB format
836 NEW Speed up PDB support
838 NEW winedbg: Add C++ support
839 NEW opengl window minimizes when the program makes another
840 NEW Negative values used by Baldur's Gate in DirectDrawSurf
845 NEW gcc Remote debugging
849 NEW Wordpro Millenium 9.5 Crashes on startup
850 NEW Lotus 123 Crashed on Startup
852 NEW winininet test doesn't terminate/fail
854 NEW ld: cannot find -lgdbm on compilation
858 NEW Segfault in WineEngInit () ( libgdi32.dll.so )
859 NEW Lotus Notes detach all does not work
860 NEW lotus approach terminates when create new database
861 NEW wine Fails to Initialize and start Yahoo! messenger.
862 NEW wine fails to load default skin for IncrediMail!!!!
863 NEW Listview report style shows right end of text not left
867 NEW err:clipping:CLIPPING_UpdateGCRegion and fixme:process:
868 NEW open 2 session; the 2 is lock
870 NEW Too many files in a directory prevent proper access to
871 NEW my application can't create an active X object
872 NEW Win9xism in dplayx.dll (ConvertToGlobalHandle)
873 ASSI Win9xism in shell32 (MapSL)
876 NEW listview report style column alignment issues
877 NEW DXgrab is "weak" and can be shaken out of
878 NEW Icons arent transparent if Managed='Y'
881 NEW Mouse cursor not blanked in opengl game
882 NEW Alpha Centauri: Text does not show in the main screen m
885 NEW Screen Corruption in riven
888 NEW DXGrab can't be undone.
890 NEW Virtual Pages difference - Spotted with VirtualQuery()
891 NEW winemaker and winebuild compatibility problem in the .s
892 NEW Implement GetSystemInfo using CPUID
894 NEW Terragen running, 2nd level child window malfunction (?
897 NEW Winetest does not compile
898 NEW fixme:dc:GetDCEx not supported yet
899 NEW Bad focus messages on window creation
900 NEW Upgrade from 20020605 to 20020710 broke Orcad Caputre S
901 NEW sound
903 NEW PathIsURL returning true for invalid formats.
905 NEW Last character in network transmission being dropped
906 NEW Quicken Deluxe 99 dosen't work with Red Carpet release
910 NEW foreground is the same as background color in winmx / s
911 NEW Screen Corruption in Nord Modular Editor
919 NEW FlashFXP 1.4.3 crashes while trying to read "MZ" magic
923 NEW We should add default Explorer registry entries to avoi
927 NEW fixme:commctrl:FlatSB_SetScrollProp stub
928 NEW fixme:commctrl:InitializeFlatSB stub
929 NEW fixme:tab:TAB_WindowProc Unimplemented msg TCM_HIGHLIGH
933 NEW ttydrv needs a lot of improvement
934 NEW Cpu usage is always 100%
945 NEW Cannot install ColdFusion MX
952 NEW Wine and The Bat!
958 NEW OSS audio problems (err:wave:OSS_OpenDevice Can't set f
959 NEW ChooseFontA dialog never displays the script selection
962 NEW Unreal Tournament Editor does not work in wine
963 NEW Default values for wineconsole are not saved
965 NEW MaskBlt is not implemented
970 NEW Intermittent regression tests freeze, possibly due to t
972 NEW Implement urlmon.URLDownloadToCacheFileA
974 NEW Put translation infrastructure in place for various Win
986 ASSI OBDC.dll unimplemented
995 NEW shlfileop test fails on FreeBSD
996 NEW sock test fails onf FreeBSD
1001 NEW Define macros STATUS_ENDPOINT_CLOSED, STATUS_DISCONNECT
1007 NEW kernel32.dll.Heap32* functions unimplemented
1022 NEW OSS_MidiInit Synthesizer support MIDI in. Not supported
1037 NEW Remedy user GUI client generates this memory error
1039 NEW No keyboard in wcmd
1046 NEW FIXME:tab:TAB_WindowProc Unimplemented msg TCM_SETITEME
1062 NEW Immortal/unkillable process
1063 NEW Debugger fails to access program memory
1074 NEW DLoad.exe (Diablo II/LOD no-cd BNet Loader) returns err
1087 NEW hotspot in wrong position for hand cursor
-------------------------------------------------------------------------
To get a list of all your bugs, you can use this URL (bookmark it if you like!):
http://bugs.winehq.com/buglist.cgi?assigned_to=wine-bugs@winehq.com
Or, you can use the general query page, at
http://bugs.winehq.com/query.cgi.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<%urlbase>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1091
Summary: ScrollWindowEx does not update invalidated are
Product: Wine
Version: CVS
Platform: All
URL: http://www.winehq.org/hypermail/wine-
devel/2002/09/0748.html
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: dpaun(a)rogers.com
When the content of a window is scrolled, parts of it may be hidden, or
invalidated. The the scroll rectangle intersect the invalidated portion,
the invalidated region has to be adjusted (either shrinked, or enlarged).
Curret code does not seem to do that, causing strange visual problems.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1091>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1090
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From marcus(a)jet.franken.de 2002-10-20 16:41 -------
user error (bad glibc upgrade)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1090>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1090
------- Additional Comments From dragon_sdc(a)hotmail.com 2002-10-20 16:32 -------
Additional info:
It appears the problem is the result of me upgrading libc6 and/or libc6-dev to
version 2.3.1-1 (Debian package). I have just downgraded to 2.2.5-15 and the
problem disappeared.
Therefore it might well a problem with libc6 not wine in which case apologies,
but I'll leave it to you to find out - I have no clue...
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1090>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1090
Summary: wine does not run anything - error with glibc 2.1.2
Product: Wine
Version: 20020904
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: dragon_sdc(a)hotmail.com
Whenever wine is launched with any arguments the following is displayed:
/usr/bin/wine.bin: relocation error: /usr/bin/../lib/libntdll.dll.so: symbol
__libc_fork, version GLIBC_2.1.2 not defined in file libc.so.6 with link time
reference
Wine failed with return code 127
Please fix this - I can't run ANYTHING through wine - I really do not want to
have to reboot into Windoze!
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1090>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=90
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-19 00:27 -------
what should be done with this bug now that we have the per-dll -DSTRICT option on?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=90>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1089
------- Additional Comments From joaoalf(a)dotx.com.br 2002-10-17 16:01 -------
I also tried with builtin commctrl, comctl32 and it give me the same problem.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1089>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1089
------- Additional Comments From dclark(a)akamail.com 2002-10-17 15:41 -------
Over on wine-users you also mentioned that this was while using native commctrl
and comctl32. I think that information is definitely relevant to this bug
report. You also might want to mention what happens when you try running with
builtin versions of those DLLs.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1089>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1089
Summary: Exception 46 drawing listview column titles
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: joaoalf(a)dotx.com.br
When I raw an app which has listviews, the listview raises the following dialog
window: "Exception 46 not trapped by MS Sans Serif point size: 008. Description:
Failed to create font.
If I press OK in dialog window it draws the column title and raises the same
exception until all titles have been writen.
I'm using native fonts (with freetype).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1089>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1088
------- Additional Comments From julliard(a)winehq.com 2002-10-17 14:21 -------
Could you please run wine under gdb and do a backtrace of the crash?
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1088>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1088
------- Additional Comments From bsmith3(a)charter.net 2002-10-17 13:36 -------
Created an attachment (id=317)
results from strace -f wine winemine &>/tmp/strace.log
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1088>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1088
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-10-17 12:41 -------
Hmm, sounds like this would be a tad bit difficult to reproduce ;-)
Could you run
strace -f wine ..... &>/tmp/strace.log
and attach the log file here ?
Thanks !
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1088>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1088
Summary: Wine crashes for user not in /etc/passwd (LDAP
authentication)
Product: Wine
Version: 20020804
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: bsmith3(a)charter.net
On my machine (PC Clone, Mandrake Linx 9.0, Wine 20021007 installed via RPM
from the Cooker tree), Wine crashes with a segmentation fault any time I try to
run it from a user who does not exist in /etc/passwd. All the actual human
users on my network are authenticated via LDAP from another Mandrake box, so
they don't need entries in /etc/passwd (although I've created them now so we
can run Wine).
This was a bear of a problem to find; I had thought originally that only root
was able to run Wine due to some config problem. I'm not sure what prompted me
to try to create a local dummy user and test it. I'm also not sure if the error
is only related to LDAP or if it will happen with any alternate authentication
(NIS, winbind or whatever), since all I have to do is stick the user
in /etc/passwd to get it to work.
I should point out that I also had this problem with Wine 20020804 which came
with Mandrake 9 - I upgraded to the latest package on Cooker to see if it fixed
the problem before I discovered what the problem was.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1088>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1087
Summary: hotspot in wrong position for hand cursor
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: trivial
Priority: P5
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: alves(a)coslinux.com.br
The hotspot for hand cursor is in the finger instead the actualy lower-right
position.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1087>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1086
Summary: fixme:file:SetFileAttributefixme:dialog:MSGBOX_OnInit
task modal msgbox ! Not modal yet.
Product: Wine
Version: 20020904
Platform: PC
URL: http://http://
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: helmut.frik(a)ptv.de
Message occured while running Marco Polo Travel Center 2000/2001 Großer
Reiseplaner (map&guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1086>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1085
Summary: fixme:shell:IShellLinkA_fnSetShowCmd (0x421fb050)-
>(showcmd=1)
Product: Wine
Version: 20020904
Platform: PC
URL: http://http://
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: helmut.frik(a)ptv.de
Message occured while running Marco Polo Travel Center 2000/2001 Großer
Reiseplaner (map&guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1085>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1084
Summary: fixme:seh:check_resource_write Broken app is writing to
the resource data, enabling work-around
Product: Wine
Version: 20020904
Platform: PC
URL: http://http://
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: helmut.frik(a)ptv.de
Message occured while running Marco Polo Travel Center 2000/2001 Großer
Reiseplaner (map&guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1084>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1083
Summary: fixme:toolhelp:InterruptUnRegister16 (0000), stub.
Product: Wine
Version: 20020904
Platform: PC
URL: http://http://
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: helmut.frik(a)ptv.de
Message occured while running Marco Polo Travel Center 2000/2001 Großer
Reiseplaner (map&guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1083>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1082
Summary: fixme:toolhelp:InterruptRegister16 (0000, 0x26f00ba),
stub.
Product: Wine
Version: 20020904
Platform: PC
URL: http://http://
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: helmut.frik(a)ptv.de
Message occured while running Marco Polo Travel Center 2000/2001 Großer
Reiseplaner (map&guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1082>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1081
Summary: fixme:file:SetFileAttributfixme:class:get_class_ptr
reading from class of other process window 70027
Product: Wine
Version: 20020904
Platform: PC
URL: http://http://
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: helmut.frik(a)ptv.de
Message occured while running Marco Polo Travel Center 2000/2001 Großer
Reiseplaner (map&guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1081>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1080
Summary: fixme:shell:IShellLinkA_fnSetShowCmd (0x421ffd20)-
>(showcmd=1)
Product: Wine
Version: 20020904
Platform: PC
URL: http://www.mapandguide.de/mg_castle.htm
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: helmut.frik(a)ptv.de
Message occured while running Marco Polo Travel Center 2000/2001 Großer
Reiseplaner (map&guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1080>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1079
Summary: fixme:file:SetFileAttributesW (L"C:\\Program
Files\\Marco Polo Travel
Center\\PROG.MOV\\MYDB.CST\\MYDB_2ND.TAB"):800
attribute(s) not implemented.
Product: Wine
Version: 20020904
Platform: PC
URL: http://http://
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P4
Component: wine-files
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: helmut.frik(a)ptv.de
Message occured while running Marco Polo Travel Center 2000/2001 Großer
Reiseplaner (map&guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1079>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1049
------- Additional Comments From helmut.frik(a)ptv.de 2002-10-17 05:39 -------
Problem also occures with Marco Polo Travel Center 2000/2001 Grosser Reiseplaner (Map@Guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1049>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1048
------- Additional Comments From helmut.frik(a)ptv.de 2002-10-17 05:36 -------
Problem also occures with Marco Polo Travel-Center 2000 Grosser Reiseplaner (Map&Guide GmbH)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1048>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=392
helmut.frik(a)ptv.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From helmut.frik(a)ptv.de 2002-10-17 04:21 -------
Bug has been resolved (maybee unintentionally :-) ) in Version 18.09.2002
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=392>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1078
Summary: NOTES 6 Gold Release - Installed crashes when being run
Product: Wine
Version: CVS
Platform: PC
URL: http://www.lotus.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: traxtopel(a)hotpop.com
Notes6 Gold Release, will not install under wine at this moment in time, so I
cheated and captured the install under windows, then reinstalled under wine.
Notes6 launches and you can configure it however.
After bookmarks are migrated to workspace. RED BOX of DEATH appears.
Notes6 debugger, shows the following which is quite intresting.
(the dll in question seems to vary alot between notes releases)
//=====================================================
Process 134682776
Exception code: C0000005 ACCESS_VIOLATION
Fault address: 623DFDE4 01:0008EDE4 C:\Lotus\Notes\nlsccstr.dll
Registers:
EAX:404A3134
EBX:404A3FC8
ECX:404A0874
EDX:62439CC0
ESI:404A3F70
EDI:404A3F96
CS:EIP:0023:623DFDE4
SS:ESP:002B:404A3134 EBP:404A313C
DS:002B ES:002B FS:008F GS:0000
Flags:00010206
Stack Trace:
623DFDE4 404A313C 0001:0008EDE4 C:\Lotus\Notes\nlsccstr.dll
6236C0E9 404A3168 0001:0001B0E9 C:\Lotus\Notes\nlsccstr.dll
62395AC0 404A31C0 0001:00044AC0 C:\Lotus\Notes\nlsccstr.dll
62395C42 404A31F0 0001:00044C42 C:\Lotus\Notes\nlsccstr.dll
6238A4AA 404A3228 0001:000394AA C:\Lotus\Notes\nlsccstr.dll
6236BDA1 404A3A60 0001:0001ADA1 C:\Lotus\Notes\nlsccstr.dll
6236BBB1 404A3FD0 0001:0001ABB1 C:\Lotus\Notes\nlsccstr.dll
6236B42C 404A4060 0001:0001A42C C:\Lotus\Notes\nlsccstr.dll
623DE3C8 404A4178 0001:0008D3C8 C:\Lotus\Notes\nlsccstr.dll
60008EA8 404A41A0 0001:00007EA8 C:\Lotus\Notes\nnotes.dll
60014981 404A41D4 0001:00013981 C:\Lotus\Notes\nnotes.dll
600149DE 404A41EC 0001:000139DE C:\Lotus\Notes\nnotes.dll
601A6371 404A4564 0001:001A5371 C:\Lotus\Notes\nnotes.dll
601A5A4D 404A4880 0001:001A4A4D C:\Lotus\Notes\nnotes.dll
-- INSERT --
If anyone is interested I can run this against wine debug and attach the
findings, although be warned they could be quite large.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1078>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |wine-bugs(a)winehq.com
AssignedTo|wine-bugs(a)winehq.com |dpaun(a)rogers.com
Status|NEW |ASSIGNED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-16 13:54 -------
Reassigning to Dimi but keeping Mr. Bugs on the CC list.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1076
------- Additional Comments From systemsupport(a)adata.de 2002-10-16 05:29 -------
Created an attachment (id=316)
msvcrt2.tgz with debugmsg +relay,+seh (Extract with tar xvfz command creates msvcrt2.log)
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1076>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1076
------- Additional Comments From bon(a)elektron.ikp.physik.tu-darmstadt.de 2002-10-16 04:38 -------
I suspect an exception happening somewhere, probably outside of msvcrt. As the
signal handling in msvcrt is still inappropriate, and the program obvious uses
msvcrt to catch exceptions, this leads to a problem.
Try running with +relay,+seh and look where the exception happens and what
caused this exception.
Your attached log file is tagged as binary, so I refrain to open it ...
Bye
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1076>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1076
------- Additional Comments From systemsupport(a)adata.de 2002-10-16 04:21 -------
Created an attachment (id=315)
Logfile for this bug
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1076>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1076
------- Additional Comments From andi(a)rhlx01.fht-esslingen.de 2002-10-16 03:59 -------
Have you even been using builtin msvcrt under 20020904 also ? Or rather a native
msvcrt.dll instead ?
If you used the builtin one, then there probably is a regression indeed.
AFAIK someone improved msvcrt exception handling. Further details could be found
out in the CVS log.
(using a native msvcrt.dll probably isn't an option for you anyway)
We might decide to put Alexandre (who did some exception handling work) on the CC...
(this does seem to be an exception handling issue, by the way)
Please attach a whole --debugmsg +relay,+msvcrt,+seh log file; the closing part
wasn't helpful, as it's way too late (you did use correct logging, though).
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1076>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1077
Summary: RtlpWaitForCriticalSection
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: sergi.sales(a)upcnet.es
When I install lotus notes 6 I have this error:
(in a fake_windows and default configuration)
err:ntdll:RtlpWaitForCriticalSection section 0x400f4244
"../../files/profile.c: PROFILE_CritSect" wait timed out, retrying (60 sec)
tid=08073b58
fixme:imagehlp:StackWalk (332, 0xffffffff, 0xfffffffe, 0x40730d80, 0x4072fa50,
(nil), 0x425baa50, 0x425baaa8, (nil)): stub
trace:loaddll:MODULE_FlushModrefs Unloaded module
'C:\windows\system\msihnd.dll' : native
trace:loaddll:MODULE_FlushModrefs Unloaded module
'C:\WINDOWS\SYSTEM\imm32.dll' : builtin
fixme:thread:SetThreadExecutionState (0x0): stub, harmless (power management).
/usr/local/bin/wine: line 432: 27469 Segmentation fault
$WINEBIN/$WINE_BIN_NAME "$@"
err:ntdll:RtlpWaitForCriticalSection section 0x400f4550
"../../loader/module.c: loader_section" wait timed out, retrying (60 sec)
tid=0843d280
err:seh:EXC_DefaultHandling Unhandled exception code c0000194 flags 0 addr
0x400c07e8
Wine failed with return code 139
If need any more information... email me..
Thank you..
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1077>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 22:05 -------
Created an attachment (id=314)
Debug output of +listview, +treeview
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1074
Summary: DLoad.exe (Diablo II/LOD no-cd BNet Loader) returns
error before game loads
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: Speeddymon(a)yahoo.com
Diablo II.exe and Game.exe work fine to the best of my knowledge. I do not have the Original Diablo II: Lord of Destruction CD (it is at a friend's
house) so I have no way of knowing for sure. But anyways, Game_crk.exe works fine as well, but DLoad.exe needs to run to be able to get on
Battle.Net, unless you use a certain script to load Game_crk.exe.
Anyways when trying to run DLoad.exe with wine with default debugmsg, wine spits this out on the console:
fixme:ntdll:NtOpenProcessToken (0xffffffff,0x00000028,0x406f28d4): stub
fixme:advapi:LookupPrivilegeValueW ((null),L"SeDebugPrivilege",0x66f01824): stubfixme:ntdll:NtAdjustPrivilegesToken
(0x0000cafe,0x00000000,0x66f01820,0x00000000,(nil),(nil)),stub!
err:virtual:NtAllocateVirtualMemory called with wrong alloc type flags (08001000) !
[root@Hub Diablo II]#
Also, the Wine Desktop Windows pops up (like it should) and then I get an error window saying this:
(Titlebar)
oops
(Message)
Error loading ApiHooks
If any of that looks familiar to anyone... :/
I dont think this exe ever worked in wine before either. If anyone needs any debugmsgs besides these or if someone wants me to do a regression test,
let me know I will run them...
-Dustin
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1074>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=1073
Summary: Wine does not show Drives/Directories in StarCraft
Installer
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.com
ReportedBy: Speeddymon(a)yahoo.com
When trying to Install StarCraft with latest CVS and earlier releases the
StarCraft Installer shows only My Computer, no + to expand it and no
Drives/Directories, only way to choose where to install it is to type the path
to where you want it installed. I will try to do a regression test tomorrow
(10/16/02) but Im not sure how tired I will be and how long it will take (slow
56k). I will post results of last working version when I can.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=1073>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=224
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:51 -------
close
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=224>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=224
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:51 -------
resolve fixed
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=224>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=224
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |REOPENED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:50 -------
reopen
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=224>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=217
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:50 -------
close
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=217>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=217
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:49 -------
resolve, please test on a recent wine build and reopen this bug if the problem
still exists.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=217>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=217
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:49 -------
reopen, please remember that you should NEVER install directx with wine.
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=217>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=210
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:46 -------
close
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=210>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=210
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:45 -------
resolve fixed
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=210>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=210
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |UNCONFIRMED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:45 -------
reopen
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=210>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=209
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:44 -------
close
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=209>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=327
This bug depends on bug 209, which changed state:
What |Old Value |New Value
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=327>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.
http://bugs.winehq.com/show_bug.cgi?id=209
Speeddymon(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|REOPENED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)yahoo.com 2002-10-15 15:44 -------
resolve fixed
DO NOT REPLY TO THIS EMAIL, BUT PLEASE POST YOUR BUG
RELATED COMMENTS THROUGH THE WEB INTERFACE AVAILABLE AT
<http://bugs.winehq.com/show_bug.cgi?id=209>.
ANY REPLY MADE TO THIS MESSAGE WILL NOT BE COLLECTED AND
INSERTED IN THE BUG DATABASE.