http://bugs.winehq.org/show_bug.cgi?id=1523
mike(a)navi.cx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From mike(a)navi.cx 2004-29-11 16:38 -------
Could you submit this patch to wine-patches please?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1523
------- Additional Comments From prahal(a)yahoo.com 2004-29-11 16:00 -------
Created an attachment (id=719)
--> (http://bugs.winehq.org/attachment.cgi?id=719&action=view)
output error if lnk file is in an unsupported location
I used wineshellink through winemenubuilder. Though i had a hard time
discovering why it did not process my test "lnk" . They wher not in one of the
mandatory path (profiles\\User ...).
This i discover by adding those outputs.
I did feel winemenubuilder should output why it won't process its input. Though
i have do not have a experiences in the wine policy . Should those be printf ,
debug output , debug error ?
Cheers
Alban
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2532
------- Additional Comments From 9gfrye202(a)sneakemail.com 2004-29-11 15:56 -------
OK, I have this problem too, from a Mandrake package. The problem stems from the
inline syscall wrappers (wld_xxx) introduced in wine/loader/preloader.c revision
1.6. Perhaps the Mandrake guys have compiled with the wrong flags, but it looks
like a wine bug to me.
Take for example wld_read:
static inline ssize_t wld_read( int fd, void *buffer, size_t len )
{
int ret;
__asm__ __volatile__( "pushl %%ebx; movl %2,%%ebx; int $0x80; popl %%ebx"
: "=a" (ret)
: "0" (SYS_read), "g" (fd), "c" (buffer), "d" (len)
: "memory" );
return SYSCALL_RET(ret);
}
here, the instruction movl %2,%%ebx refers to the 'fd' (file descriptor)
argument of the asm code snippet. This is fine if 'fd' argument is passed to the
asm block as a register, but if it is passed as a variable on the stack then
the compiler gets the wrong location because the previous 'pushl %%ebx' has
modified the stack pointer since the asm snippet began. If you use the "r"
constraint instead of the "g" constraint, you can force 'fd' to be a register, ie
: "0" (SYS_read), "r" (fd), "c" (buffer), "d" (len)
However I say this without having produced & compiled a patch myself. This
explains why some distros are affected and others aren't (ie it's in the
optimisation flags) and it explains why wine-preload is trying to SYS_read()
from stdio (ie fd=0) on my Mandrake build.
I will post the relevant snippet from a disassembly listing if anyone wants -
but I think this info should be enough?
Thanks!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1523
prahal(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #717 is|0 |1
obsolete| |
------- Additional Comments From prahal(a)yahoo.com 2004-29-11 15:47 -------
Created an attachment (id=718)
--> (http://bugs.winehq.org/attachment.cgi?id=718&action=view)
strangthen wineshellink args parsing
this patch fix single quote for debian/mandrake menu with args having
characters not handled by bash as they are by windows (eg. ! in a path)
the previous patch was wrong on the way it made the menu : " \'$args\' " is
silly , i rplaced it by " '$args' ".
Also an improvment from previous patch : now "--" is not added if $args is
empty . Otherwise bad things happened .
Cheers
Alban
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2574
------- Additional Comments From kdntl(a)yahoo.fr 2004-29-11 14:13 -------
Answer to Mike Hearn :
It changes nothing if I run wine-preloader with wine-pthread as argument. I also
tried with wine-kthread and even wine-glibc, but each time I get exactly the
same error messages as previously.
When I have time, I will try to compile each version of wine from 20031231 in
order to see from which version it stops working for me.
I will post here the results.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2587
Summary: FreeBSD: wine: failed to create the process heap
Product: Wine
Version: CVS
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas.scholten(a)unbescholten.de
After compiling wine from CVS on FreeBSD 6-0-current, starting wine or winefile
dies with:
wine: failed to create the process heap.
using --debugmsg +trace doesn't produce further info
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2586
Summary: error running make install with FreeBSD make instead
gmake
Product: Wine
Version: CVS
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: minor
Priority: P3
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas.scholten(a)unbescholten.de
Per default FreeBSD uses it's own implementation of make instead gnu make. Using
./configure. make && make install prodices the following error; using gmake
install works fine anyway:
../../tools/mkinstalldirs -m 755 /usr/local/lib/wine
/usr/bin/install -c serialui.dll.so /usr/local/lib/wine/serialui.dll.so
cd `dirname setupapi/__install__` && make install
gcc -g -O2 install.c -o install
install.c:23:20: windef.h: No such file or directory
install.c:24:21: winbase.h: No such file or directory
install.c:25:20: winreg.h: No such file or directory
install.c:26:22: winternl.h: No such file or directory
install.c:27:22: winerror.h: No such file or directory
install.c:28:20: wingdi.h: No such file or directory
install.c:29:21: winuser.h: No such file or directory
install.c:30:20: winnls.h: No such file or directory
install.c:31:22: setupapi.h: No such file or directory
In file included from install.c:32:
setupapi_private.h:35: error: syntax error before '*' token
setupapi_private.h:35: error: syntax error before "hinf"
setupapi_private.h:35: warning: data definition has no type or storage class
setupapi_private.h:36: error: syntax error before '*' token
setupapi_private.h:38: error: syntax error before '*' token
setupapi_private.h:40: error: syntax error before '*' token
setupapi_private.h:40: error: syntax error before "hinf"
setupapi_private.h:40: warning: data definition has no type or storage class
setupapi_private.h:41: error: syntax error before '*' token
setupapi_private.h:41: error: syntax error before '*' token
setupapi_private.h:41: warning: data definition has no type or storage class
setupapi_private.h:48: error: syntax error before "PSP_FILE_CALLBACK_A"
setupapi_private.h:51: error: syntax error before "CALLBACK"
setupapi_private.h:51: error: syntax error before "UINT"
setupapi_private.h:51: warning: data definition has no type or storage class
install.c:33:26: wine/unicode.h: No such file or directory
install.c:34:24: wine/debug.h: No such file or directory
install.c:36: warning: parameter names (without types) in function declaration
install.c:36: warning: data definition has no type or storage class
install.c:41: error: syntax error before "HSPFILEQ"
install.c:50: error: syntax error before "HKEY"
install.c:57: error: syntax error before "PSP_FILE_CALLBACK_W"
install.c:62: error: syntax error before '*' token
install.c:65: error: syntax error before "CopyFiles"
install.c:65: warning: data definition has no type or storage class
install.c:66: error: syntax error before "DelFiles"
install.c:66: warning: data definition has no type or storage class
install.c:67: error: syntax error before "RenFiles"
install.c:67: warning: data definition has no type or storage class
install.c:68: error: syntax error before "Ini2Reg"
install.c:68: warning: data definition has no type or storage class
install.c:69: error: syntax error before "LogConf"
install.c:69: warning: data definition has no type or storage class
install.c:70: error: syntax error before "AddReg"
install.c:70: warning: data definition has no type or storage class
install.c:71: error: syntax error before "DelReg"
install.c:71: warning: data definition has no type or storage class
install.c:72: error: syntax error before "BitReg"
install.c:72: warning: data definition has no type or storage class
install.c:73: error: syntax error before "UpdateInis"
install.c:73: warning: data definition has no type or storage class
install.c:74: error: syntax error before "CopyINF"
install.c:74: warning: data definition has no type or storage class
install.c:75: error: syntax error before "UpdateIniFields"
install.c:75: warning: data definition has no type or storage class
install.c:76: error: syntax error before "RegisterDlls"
install.c:76: warning: data definition has no type or storage class
install.c:77: error: syntax error before "UnregisterDlls"
install.c:77: warning: data definition has no type or storage class
install.c:78: error: syntax error before "ProfileItems"
install.c:78: warning: data definition has no type or storage class
install.c:86: error: syntax error before '*' token
install.c:86: error: syntax error before '*' token
install.c: In function `get_field_string':
install.c:89: error: syntax error before "required"
install.c:91: error: `context' undeclared (first use in this function)
install.c:91: error: (Each undeclared identifier is reported only once
install.c:91: error: for each function it appears in.)
install.c:91: error: `index' undeclared (first use in this function)
install.c:91: error: `buffer' undeclared (first use in this function)
install.c:91: error: `size' undeclared (first use in this function)
install.c:91: error: `required' undeclared (first use in this function)
install.c:92: error: `ERROR_INSUFFICIENT_BUFFER' undeclared (first use in this
function)
install.c:95: error: `static_buffer' undeclared (first use in this function)
install.c:96: error: `WCHAR' undeclared (first use in this function)
install.c:96: error: `NULL' undeclared (first use in this function)
install.c: At top level:
install.c:110: error: syntax error before "copy_files_callback"
install.c:110: error: syntax error before "hinf"
install.c: In function `copy_files_callback':
install.c:112: error: `arg' undeclared (first use in this function)
install.c:114: error: `field' undeclared (first use in this function)
install.c:115: error: structure has no member named `queue'
install.c:115: error: structure has no member named `layout'
install.c:115: error: structure has no member named `src_root'
install.c:115: error: `NULL' undeclared (first use in this function)
install.c:115: error: structure has no member named `copy_flags'
install.c:117: error: structure has no member named `queue'
install.c:117: error: structure has no member named `src_root'
install.c:117: error: structure has no member named `layout'
install.c:117: error: `hinf' undeclared (first use in this function)
install.c:117: error: structure has no member named `copy_flags'
install.c:118: error: `TRUE' undeclared (first use in this function)
install.c: At top level:
install.c:127: error: syntax error before "delete_files_callback"
install.c:127: error: syntax error before "hinf"
install.c: In function `delete_files_callback':
install.c:129: error: `arg' undeclared (first use in this function)
install.c:130: error: structure has no member named `queue'
install.c:130: error: `hinf' undeclared (first use in this function)
install.c:130: error: `field' undeclared (first use in this function)
install.c:131: error: `TRUE' undeclared (first use in this function)
install.c: At top level:
install.c:140: error: syntax error before "rename_files_callback"
install.c:140: error: syntax error before "hinf"
install.c: In function `rename_files_callback':
install.c:142: error: `arg' undeclared (first use in this function)
install.c:143: error: structure has no member named `queue'
install.c:143: error: `hinf' undeclared (first use in this function)
install.c:143: error: `field' undeclared (first use in this function)
install.c:144: error: `TRUE' undeclared (first use in this function)
install.c: At top level:
install.c:153: error: syntax error before "get_root_key"
install.c:153: error: syntax error before '*' token
install.c: In function `get_root_key':
install.c:155: error: syntax error before "HKCR"
install.c: At top level:
install.c:156: error: syntax error before "HKCU"
install.c:156: warning: data definition has no type or storage class
install.c:157: error: syntax error before "HKLM"
install.c:157: warning: data definition has no type or storage class
install.c:158: error: syntax error before "HKU"
install.c:158: warning: data definition has no type or storage class
install.c:159: error: syntax error before "HKR"
install.c:159: warning: data definition has no type or storage class
install.c:161: error: syntax error before "if"
*** Error code 1
Stop in /usr/home/tom/winecvs/wine/dlls/setupapi.
*** Error code 1
Stop in /usr/home/tom/winecvs/wine/dlls.
*** Error code 1
Stop in /usr/home/tom/winecvs/wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2585
------- Additional Comments From thomas.scholten(a)unbescholten.de 2004-29-11 08:14 -------
Digged a bit deeper and found that declaration setkey() ist taken by
/usr/include/stdlib.h under FreeBSD. Renaming declaration and function calls in
winecfg.c setkey() to something else (i.e. "winesetkey ()") solves the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2585
Summary: After Fix of Bug#2580, Wine FreeBSD Build dies again in
winecfg / setkey
Product: Wine
Version: CVS
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas.scholten(a)unbescholten.de
On my system
uname -a: FreeBSD silvia-bsd.mittelerde.tom 6.0-CURRENT FreeBSD 6.0-CURRENT #0:
Sun Nov 28 14:02:12 CET 2004
root@silvia-bsd.mittelerde.tom:/usr/obj/usr/src/sys/SILVIA-BSD-CUR i386)
using ./configure, make && make depend (on FBSD we use make NOT gmake, sometimes
a difference, just as a gentle note) wine again bails out in programs/winecfg
with the following error:
[..]
rm -f wsock32.dll.so && ln -s wsock32/wsock32.dll.so wsock32.dll.so
gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o winecfg.o winecfg.c
winecfg.c:142: error: conflicting types for 'setkey'
/usr/include/stdlib.h:205: error: previous declaration of 'setkey' was here
winecfg.c:142: error: conflicting types for 'setkey'
/usr/include/stdlib.h:205: error: previous declaration of 'setkey' was here
*** Error code 1
Stop in /usr/home/tom/winecvs/wine/programs/winecfg.
*** Error code 1
Stop in /usr/home/tom/winecvs/wine/programs.
*** Error code 1
Stop in /usr/home/tom/winecvs/wine.
thanks for the help before and best regards
Thomas
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2532
------- Additional Comments From mike(a)navi.cx 2004-29-11 07:23 -------
Does this work if you compile without optimizations enabled?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2107
mike(a)navi.cx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From mike(a)navi.cx 2004-29-11 07:21 -------
Use an IE installer script if you want this program. It does things which are
very hard to support without Wine being given additional information, and we
have already done this debugging for you (eg the advapi32 thing which is
impossible to fix without a DLL override).
I don't think this is really a bug. IE just needs a particular configuration to
install correctly. Please raise this on wine-devel if you disagree.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2578
------- Additional Comments From mike(a)navi.cx 2004-29-11 07:11 -------
It's not that simple AFAIK, read the comments in server/fd.c, we need to track
file descriptors to implement file locking correctly.
I'd suggest raising this issue on wine-devel.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=430
------- Additional Comments From mike(a)navi.cx 2004-29-11 07:06 -------
I don't think this patch is correct, is it really the dialogs responsibility to
remember the selection of the edit?
At minimum, these vars should be dialog scoped, possibly even thread scoped.
Post it to wine-devel and ask there.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2580
mike(a)navi.cx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From mike(a)navi.cx 2004-29-11 07:04 -------
A patch for this has been submitted, and it's fixed in CVS.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2577
mike(a)navi.cx changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WONTFIX
------- Additional Comments From mike(a)navi.cx 2004-29-11 07:02 -------
The Mandrake Cooker packaging is incorrect and should be fixed to be the same as
upstream.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2574
------- Additional Comments From mike(a)navi.cx 2004-29-11 07:00 -------
It should be running "wine-preloader wine-pthread" or somesuch not just
wine-preloader.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=609
winebugzilla(a)sun.consumer.org.il changed:
What |Removed |Added
----------------------------------------------------------------------------
BugsThisDependsOn| |2584
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2584
Summary: "SetLayout" doesn't affect actual display
Product: Wine
Version: unspecified
Platform: All
URL: http://http://msdn.microsoft.com/library/default.asp?url
=/library/en-us/gdi/devcons_5upg.asp
OS/Version: All
Status: NEW
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: winebugzilla(a)sun.consumer.org.il
OtherBugsDependingO 609
nThis:
SetLayout with the "LAYOUT_RTL" flag needs to change the way certain flags are
handled. Most specifically, it needs to reverse certain aspect of GDI rendering.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1523
prahal(a)yahoo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #716 is|0 |1
obsolete| |
------- Additional Comments From prahal(a)yahoo.com 2004-28-11 09:56 -------
Created an attachment (id=717)
--> (http://bugs.winehq.org/attachment.cgi?id=717&action=view)
same patch with single quote instead of double
those patches are an update of those at :
http://www.spinics.net/lists/wine/msg01926.html and
http://www.spinics.net/lists/wine/msg03156.html.
I changed to single quote the path as suggested in the latter email. CVs had it
for the "kde" entry though it still apply to the "menu" and "gnome" (ie windows
can have ! in path which bash can not handle.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1523
------- Additional Comments From prahal(a)yahoo.com 2004-28-11 09:02 -------
With latest cvs i can reproduce this bug (20041127) . The fix above does the job
and is a one liner ...
I bet the problem is on every debian/mandrake compatible distribution (Xandros
and the like) so it s not like it s useless , thus i feel "trivial" is not
enough , "normal" would be right.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2017
------- Additional Comments From andreamrl(a)tiscali.it 2004-27-11 20:14 -------
I'm using also synaptics touchpad driver and have the same error running
photoshop or any other win app.
Pleacing syncro mode in config file made wine break in the debugger and got the
followinf error:
err:x11drv:error_handler X protocol error: serial=112, request_code=147 -
breaking into debugger
wine: Unhandled exception (thread 0009), starting debugger...
Usage: winedbg [--auto] [--gdb] cmdline
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2583
Summary: Popup menus disappear under some window managers
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: goeran(a)uddeborg.se
Popup menus, like the ones the right mouse button is typically opening,
disappear immediately under some window managers but not others.
As a simple test case, I start "wine notepad", and in the text area click the
right mouse button. If I'm running a Gnome environment, using metacity as a
window manager, I get the menu on the screen. If I am using good old twm, the
menu just flashes briefly, apparently when I RELEASE the button. It is not
possible to select anything in the menu.
Note this is just an illustrating test case. I see the problem in other
applications too, and it appears in other window environments. Notepad, Gnome,
and twm seemed to be a simple test case.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2543
------- Additional Comments From m0sia(a)plotinka.ru 2004-26-11 14:06 -------
same bug with using install shield 6 seup.exe. again ole problems =(
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2582
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-26-11 12:49 -------
For future reference, rather than starting a new bug. You could have added this
comment to bug 2559 (and read all of it).
The patch for fixing CET was added Nov. 1st 2004, so it would be in the October
release.
http://www.winehq.org/hypermail/wine-cvs/2004/11/0014.html
As Duane said: "About all you can do is to run a current CVS version of Wine, or
a several months old version."
Or you can wait for the next release...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2582
dclark(a)akamail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From dclark(a)akamail.com 2004-26-11 12:12 -------
If you read all of bug 2559, you would see that this is already fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2582
Summary: BUG 2559 should be reopened
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jyri(a)riu.com
The bug 2559 which is closed represents itself again:
$ wine WinSuite32.exe
fixme:ole:CoRegisterMessageFilter stub
fixme:ntdll:TIME_GetTZAsStr Can't match system time zone name "CET" to an entry
in TZ_INFO
fixme:ntdll:TIME_GetTZAsStr Please add appropriate entry to TZ_INFO and submit
as patch to wine-patches
fixme:ole:CoRegisterMessageFilter stub
$
This happens when I run it from the users home directory and from the
installation directory of Winsuite (for Windows NT4.0).
Regards
Jyri Sillanpää, OSS Consultant
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1944
------- Additional Comments From john(a)jcoppens.com 2004-25-11 09:58 -------
Though there do not seem to be reports since Jan, this problem is still present
in the last release:
wine: Unhandled exception (thread 000a), starting debugger...
err:ntdll:RtlpWaitForCriticalSection section 0x40579ca0 "syslevel.c: Win16Mutex"
wait timed out in thread 0009, blocked by 000a, retrying (60 sec)
Has someone found a solution (or cause)?
I found a reference that using XOrg instead of XFree86 might be the cause - has
this been confirmed?
TIA
John
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=421
------- Additional Comments From oliver_stieber(a)yahoo.co.uk 2004-24-11 18:12 -------
how about starting with something like libwmf
http://wvware.sourceforge.net/libwmf.html
As I seem to remember WMF is miore or less just a set of calls to the DIB API,
so libwmf would a tleast be a start.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2581
Summary: Keyboard ony work when cursor locate at windows top
title bar area
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: azure(a)totem.ca
I find out this problem since I start using wine years ago.
I Start using Wine since Redhat 7.3 and now I am using Fedora Core 3 and still
had the same problem.
I had the same problem with RXVT and they send me some code to modify the RXVT
and re-compile it and it work.
The following is how the code change in rxvt
=======================================================================
this is caused by a design flaw in X11, how synergy snoops for
events, and how rxvt handles keyboard events. there may be
something i can do to synergy to avoid the problem but fixing
rxvt is a whole lot simpler. i filed a bug against rxvt and
included a patch, which i've included below if you'd like to
apply it to rxvt 2.7.10 yourself.
cheers,
-chris
diff -ur rxvt-2.7.10-old/src/init.c rxvt-2.7.10/src/init.c
--- rxvt-2.7.10-old/src/init.c Tue Dec 3 21:21:39 2002
+++ rxvt-2.7.10/src/init.c Sat May 15 16:41:46 2004
@@ -1170,7 +1170,11 @@
#endif
XDefineCursor(r->Xdisplay, r->TermWin.vt, r->TermWin_cursor);
XSelectInput(r->Xdisplay, r->TermWin.vt,
- (ExposureMask | ButtonPressMask | ButtonReleaseMask
+ (KeyPressMask
+#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
+ | KeyReleaseMask
+#endif
+ | ExposureMask | ButtonPressMask | ButtonReleaseMask
| PropertyChangeMask
| Button1MotionMask | Button3MotionMask));
@@ -1188,7 +1192,11 @@
#endif
XDefineCursor(r->Xdisplay, r->menuBar.win, r->h->cursor_leftptr);
XSelectInput(r->Xdisplay, r->menuBar.win,
- (ExposureMask | ButtonPressMask | ButtonReleaseMask
+ (KeyPressMask
+#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
+ | KeyReleaseMask
+#endif
+ | ExposureMask | ButtonPressMask | ButtonReleaseMask
| Button1MotionMask));
}
#endif
diff -ur rxvt-2.7.10-old/src/scrollbar.c rxvt-2.7.10/src/scrollbar.c
--- rxvt-2.7.10-old/src/scrollbar.c Mon Apr 15 20:44:58 2002
+++ rxvt-2.7.10/src/scrollbar.c Sat May 15 16:48:06 2004
@@ -109,7 +109,11 @@
#endif
XDefineCursor(r->Xdisplay, r->scrollBar.win, r->h->cursor_leftptr);
XSelectInput(r->Xdisplay, r->scrollBar.win,
- (ExposureMask | ButtonPressMask | ButtonReleaseMask
+ (KeyPressMask
+#if defined(MOUSE_WHEEL) && defined(MOUSE_SLIP_WHEELING)
+ | KeyReleaseMask
+#endif
+ | ExposureMask | ButtonPressMask | ButtonReleaseMask
| Button1MotionMask | Button2MotionMask
| Button3MotionMask));
delayed_init = 1;
=============================================
And I just find out if i do a command "cat /etc/localtime" ( Mountain Time
America/Edmonton) and then start the wine then the problem fixed. I had no idea
how and why but it work.
Hope this can help to fix the problem.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2580
thomas.scholten(a)unbescholten.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Priority|P2 |P1
Summary|programs/winecfg from CVS is|programs/winecfg from CVS is
|missing mntent.h |missing mntent.h / no
| |compile on FBSD53
------- Additional Comments From thomas.scholten(a)unbescholten.de 2004-24-11 09:30 -------
Tested today on my 2nd macine, same error
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2579
lordpopcorn(a)poczta.onet.pl changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From lordpopcorn(a)poczta.onet.pl 2004-24-11 03:21 -------
Fixed, a buggy kernel sound driver was the reason for me. I've built ALSA with
OSS emulation and left wineoss.drv as the sound driver in ~/.wine/config. Works
cool for me.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2580
Summary: programs/winecfg from CVS is missing mntent.h
Product: Wine
Version: CVS
Platform: PC
OS/Version: FreeBSD
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: thomas.scholten(a)unbescholten.de
On my System FreeBSD 5.3-RELEASE-p1 the wine-source from CVS (23.11.04) doesn't
compile after ./configure and make && make depend with the following error:
gcc -c -I. -I. -I../../include -I../../include -D_REENTRANT -fPIC -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith -g
-O2 -o drivedetect.o drivedetect.c
drivedetect.c:28:20: mntent.h: No such file or directory
drivedetect.c: In function `autodetect_drives':
drivedetect.c:206: warning: implicit declaration of function `getmntent'
drivedetect.c:206: warning: assignment makes pointer from integer without a cast
drivedetect.c:212: error: dereferencing pointer to incomplete type
drivedetect.c:214: error: dereferencing pointer to incomplete type
drivedetect.c:215: error: dereferencing pointer to incomplete type
drivedetect.c:226: error: dereferencing pointer to incomplete type
drivedetect.c:226: error: dereferencing pointer to incomplete type
drivedetect.c:231: error: dereferencing pointer to incomplete type
drivedetect.c:232: error: dereferencing pointer to incomplete type
drivedetect.c:233: error: dereferencing pointer to incomplete type
drivedetect.c:234: error: dereferencing pointer to incomplete type
drivedetect.c:235: error: dereferencing pointer to incomplete type
drivedetect.c:236: error: dereferencing pointer to incomplete type
drivedetect.c:237: error: dereferencing pointer to incomplete type
drivedetect.c:240: error: dereferencing pointer to incomplete type
*** Error code 1
Stop in /usr/home/tom/cvs.wine/wine/programs/winecfg.
*** Error code 1
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2579
------- Additional Comments From lordpopcorn(a)poczta.onet.pl 2004-23-11 01:03 -------
Whoops, looks like I've got a similar problem using Wine-20031212. Houston,
we've got a problem. Any ideas?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2579
------- Additional Comments From lordpopcorn(a)poczta.onet.pl 2004-22-11 17:58 -------
I see this bug is similar to #2576, however I'm not able to run _any_
application correctly. Some more info: I don't have any Windows partition, I
install Wine using the `./tools/wineinstall' command. Here is what I made out
further...
I actually _can_ run the applications shipped with the Wine source distribution
- notepad, regedit etc. They work fine. However, when I exit them, I get swamped
with the following messages:
----------
wine: Unhandled exception (thread 0009), starting debugger...
(the above appears only once)
err:syslevel:_EnterSysLevel (0x408c1480, level 2): Holding 0x40949520, level 3.
Expect deadlock!
(this one appears a few thousand times, at least)
----------
When I run any external Windows binary (say, a WinRAR self-extracting archive),
`strace any.exe' gives:
----------
[...]
rt_sigprocmask(SIG_SETMASK, [RTMIN], NULL, 8) = 0
close(9) = 0
rt_sigprocmask(SIG_BLOCK, NULL, [RTMIN], 8) = 0
stat64("/home/kempniu/.wine/dosdevices/f:/KERNEL32.DLL", 0x4067fbc0) = -1 ENOENT
(No such file or directory)
stat64("/home/kempniu/.wine/dosdevices/f:/KERNEL32.DLL", 0x4067f900) = -1 ENOENT
(No such file or directory)
open("/home/kempniu/.wine/dosdevices/f:", O_RDONLY|O_LARGEFILE|O_DIRECTORY) = 9
ioctl(9, TUNIOCGETINFO or VFAT_IOCTL_READDIR_BOTH, 0x4067f6e0) = -1 ENOTTY (Inap
propriate ioctl for device)
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
--- SIGSEGV (Segmentation fault) @ 0 (0) ---
(etc. - hangs forever)
----------
For your information, running notepad or regedit _also_ gives me a segfault, but
only once. Running any external application results in a hangup.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2572
nacho(a)merkapc.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From nacho(a)merkapc.com 2004-22-11 11:13 -------
Solved via RealChildWindowFromPoint patch released 31 october 2004. Now, RPGMakerXP
won't run, but doesn't say anything
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2579
Summary: Wine hangs up the whole system on startup
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: lordpopcorn(a)poczta.onet.pl
I'm trying to get Wine-20041019 running on a Toshiba Satellite Pro 4270 notebook
(hardware/software specification can be found below). Both when using the
precompiled binaries and compiling Wine from scratch, when I run the `wine'
binary for the first time, it prints out the information about creating font
indexes and when it gets to 100%, my system is pretty much dead. It's totally
unresponding, the cursor isn't moving, the keyboard isn't reacting and the only
solution is to press the POWER button. I would have sent some output but
actually I don't get any! Don't know what to do, even which direction to go...
And I'm quite fed up with losing 5 minutes each time fsck is run...
Some info about the environment: Celeron 500, 320 MB RAM, Savage IX (8 MB VRAM),
Yamaha sound card, 40 GB Samsung HDD. Slackware 10.0 with a 2.4.27 kernel (my
very own build, _without_ any VFAT or MSDOS support - perhaps this is the issue?).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2578
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-22-11 01:10 -------
Patches submitted here tend to bit rot. I would sugget that you submit it to
wine-devel(a)winehq.org for discussion.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2578
------- Additional Comments From greg(a)electricrain.com 2004-21-11 20:14 -------
Created an attachment (id=715)
--> (http://bugs.winehq.org/attachment.cgi?id=715&action=view)
proposed patch
This patch works great for me. However it may not be perfect in the face of
async io:
I notice that in ntdlls/file.c it stores the file handle from the
handle_to_fd() call in an allocated ovp structure that is passed to
register_new_async(). In that situation a dup() or a new open()+seek() should
probably be done first along with making sure whatever async code uses the fd
cleans it up later when appropriate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
------- Additional Comments From michael(a)heiming.de 2004-21-11 14:54 -------
Hi!
Couldn't directly install from the City Select CD 1, installer worked fine with
"msi=n", but told me to install from Setup CD.
Due to problems with my cdrom, mounted the "City Select CD 1" .iso in a loop
over /mnt/cdrom and started Setup.exe (Setup CD) from a complete copy of this
CD. Worked until after what looks like a wine fake "reboot" and again it stops
with the message it couldn't find the install CD.;(
Will retry as soon as my cdrom is working again, but it doesn't look like the
reason, probably wine shouldn't mention any difference between the CD-ROM and
the loop mounted iso. ~/.wine/dosdevices/ has a symlink "d: -> /mnt/cdrom".
file /mnt/cdrom/setup.exe
/mnt/cdrom/setup.exe: MS-DOS executable (EXE), OS/2 or MS Windows
Ran "strace -fp <wine PID>" but couldn't see anything where it tries to open one
or another device.
WINEDLLOVERRIDES="ole32,oleaut32,rpcrt4=n,msi,usp10,sdbapi,riched20,mspatcha,msisip,msimsg,cabinet,msi=n"
/opt/wine-cvs/bin/wine ./Setup.exe
fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum
fixme:win:SetWindowTextA cannot set text "InstallShield Wizard" of other process
window (nil)
fixme:win:SetWindowTextA cannot set text "MapSource" of other process window (nil)
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:win:SetWindowTextA cannot set text "InstallShield Wizard" of other process
window (nil)
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2578
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-misc |wine-files
Version|unspecified |20041019
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2577
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-files |wine-binary
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
------- Additional Comments From hans(a)it.vu.nl 2004-21-11 11:25 -------
OK, so you have native MSI installed now, but you're not using it. I can tell
from your command line and the fact that MSI calls produce log output (only
builtin does that). Please try this command line:
WINEDLLOVERRIDES="msi=n" /opt/wine-cvs/bin/wine /mnt/cdrom/setup.exe
and report the outcome here.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2574
------- Additional Comments From kdntl(a)yahoo.fr 2004-21-11 10:59 -------
Here is what I get when running the following command :
$ /lib/ld-2.3.4.so ./wine-preloader
./wine-preloader: error while loading shared libraries: ./wine-preloader: failed
to map segment from shared object: Cannot allocate memory
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2578
Summary: file write performance over NFS very poor due to
dup+write+close
Product: Wine
Version: unspecified
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: greg(a)electricrain.com
I run wine on a diskless workstation to run some windows video transmogrifying
applications. Needless to say, video files are huge so this app does a lot of
IO. Under wine, the effective write speed of the application is reduced to a
few hundred kbytes/sec on nfs filesystems. Performance is probably reduced on
local disks as well (i don't have wine on a system with a disk to test that) as
the close() presumably waits for the data to be committed to disk.
Doing an strace of the wine process that does the disk IO shows:
rt_sigprocmask(SIG_BLOCK, NULL, [RTMIN], 8) = 0
rt_sigprocmask(SIG_BLOCK, [HUP INT USR1 USR2 ALRM CHLD IO], [RTMIN], 8) = 0
write(16, "&\0\0\0\0\0\0\0\0\0\0\0d\0\0\0\0\0\0@\0\0\0\0\0\0\0\0\0"..., 64) = 64
read(15, "\0\0\0\0\0\0\0\0\24\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0\0"..., 64) = 64
rt_sigprocmask(SIG_SETMASK, [RTMIN], NULL, 8) = 0
dup(20) = 23
write(23, "\0\0\1\272D\37T\222LU\1\211\303\370\0\0\1\300\7\354\201"..., 2048) = 2048
close(23) = 0
... repeated for a long long time ...
A check in /proc/PID/fd/ shows that 20 is indeed the output file (15 and 16 are
the pipes between the wine processes). Not seen here is the input file (17)
which is read much more efficiently in 3 128k chunks every so often (though it
is read in an unnecessary dup+read+close sequence which causes extra NFS getattr
latency)
tcpdump on the nfs client shows that three round trip latencies are involved in
every 4096 bytes that wine writes:
getattr + response, write + response, commit + response.
with a normal linux program that doesn't close its fd (forcing the commit and
the getattr before the next write) writing goes at full speed.
I have observed this behaviour with every version of wine i've used in the past
year. Currently i'm using 20041019. It occurs regardless of if the client is
running a linux 2.4 or 2.6 kernel. The kernel is doing the correct thing.
Close forces a commit to ensure that the data is on stable storage before
returning (close will return an error otherwise; wine doesn't appear to check
for an error on close).
Proposed fix: stop the dup+close nonsense. Grepping thru the wine code I'm
guessing that it is in dlls/ntdll/server.c where this all occurs with the
wine_server_handle_to_fd() and wine_server_release_fd() functions that implement
a dup() and a close() respectively.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2577
Summary: Packaging convention is not consistent with Mandrake's
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rls(a)tamu.edu
I recently installed the newest version of wine, packaged for Mandrake. The
next time I upgraded my system from the newest Mandrake Cooker repository, I
ran into a conflict -- you guys have everything in one package (win-2004XXXXX)
and Mandrake splits wine into several packages (wine-2004XXXX, libwine...). Can
you guys coordinate with Mandrake on this to make installation easier?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=430
------- Additional Comments From rtomsick(a)rtomsick.tk 2004-20-11 23:31 -------
Hm... when I add selStart and selEnd to DIALOGINFO, we get problems. The
reselection of text works just fine, but as soon as a second window is spawned,
we crash. When these are defined as globals, this is not an issue. (This is
from changes against last night's CVS.) I'm probably missing something obvious
here, but any help would be appreciated.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2575
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2576
------- Additional Comments From bero(a)arklinux.org 2004-20-11 22:15 -------
Replacing wine-preloader with a simple script that does
#!/bin/sh
exec "$@"
works (though it doesn't do exactly the same thing wine-preloader does), and
fixes the issue of hanging subprocesses caused by this.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2576
Summary: Wine (20041019 and CVS) hangs on startup
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bero(a)arklinux.org
On a Linux 2.6.9-mm1 (and 2.6.10-rc2-mm1) system with glibc 2.3.3/nptl and gcc
3.4.3, wine hangs on startup when trying to run any application, including
simple self-extracting archives that used to work with older versions of wine.
"strace wine any.exe" ends in
execve("//usr/bin/wine-preloader", ["//usr/bin/wine-preloader",
"//usr/bin/wine-pthread", "any.exe"], [/* 26 vars */]) = 0
old_mmap(0x1, 0, 0x110000, MAP_FILE, 16434, 0xffffffff) = -1 EINVAL (Invalid
argument)
old_mmap(0x2, 2147483648, PROT_GROWSDOWN, MAP_FILE, 16434, 0xffffffff) = -1
EINVAL (Invalid argument)
old_mmap(0x3, 1114112, PROT_GROWSDOWN|PROT_GROWSUP|0xcef0000, MAP_FILE, 16434,
0xffffffff) = -1 EINVAL (Invalid argument)
open("//usr/bin/wine-pthread", O_RDONLY) = 3
read(0,
[At this point, it just hangs forever].
Launching "wine-pthread any.exe" by hand works.
I didn't get to debug this any further yet.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2383
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-19-11 20:42 -------
Thats one bug fixed and another found.
please start a new bug for the crash right before game play.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2383
------- Additional Comments From vincent.lonngren.759(a)student.lu.se 2004-19-11 17:53 -------
With the 2004-10-19 release, the installshield does install CK, and the game
starts. Unfortunately, it then crashes after province selection, right before
gameplay is about to begin. :(
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2573
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=226
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2574
Summary: wine-preloader receives SIGKILL on start
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: kdntl(a)yahoo.fr
Hi all,
Since the 20040112 version (or the previous one, I can't remember), wine
compiles correctly on my Linux box but is crashes on each start.
Here are some informations about my system :
$ uname -s -r -m -p -i
Linux 2.4.26-gentoo-r11 i686 Pentium III (Coppermine) GenuineIntel
$ /lib/libc-2.3.4.so
(...)
Available extensions:
GNU libio by Per Bothner
crypt add-on version 2.1 by Michael Glad and others
linuxthreads-0.10 by Xavier Leroy
BIND-8.2.3-T5B
libthread_db work sponsored by Alpha Processor Inc
NIS(YP)/NIS+ NSS modules 0.19 by Thorsten Kukuk
Thread-local storage support included.
(...)
$ gcc -v
(...)
Thread model: posix
gcc version 3.3.4 20040623 (Gentoo Linux 3.3.4-r1, ssp-3.3.2-2, pie-8.7.6)
Each time I run wine (or wine-pthread), it stops immediatly. After "stracing"
the wine binary, the last call is execve("wine-preloader"). So I run the
wine-preloader binary from the command line and indeed, it crashes immediatly :
$ strace ./wine
(...)
execve("/home/kd/wine-20041019/loader/wine-preloader",
["/home/kd/wine-20041019/loader/wi"..., "/home/kd/wine-20041019/loader/wi"...],
[/* 54 vars */]) = 0
+++ killed by SIGKILL +++
$ cd loader
$ strace ./wine-preloader
execve("./wine-preloader", ["./wine-preloader"], [/* 53 vars */]) = 0
+++ killed by SIGKILL +++
$ gdb -q ./wine-preloader
Using host libthread_db library "/lib/libthread_db.so.1".
(gdb) r
Starting program: /home/kd/wine-20041019/loader/wine-preloader
Program terminated with signal SIGKILL, Killed.
The program no longer exists.
You can't do that without a process to debug.
(gdb)
$
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2572
Summary: User32.dll Error of NT4 SP5 (Micsoft knowledge base)
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nacho(a)merkapc.com
When executing RPGmaker XP with all versions of wine (CEDEGA, Wine and Crossover
Office) the program reports this error: "Loader Error" "The procedure entry point
RealChildWindowFromPoint could not be located in the dynamic link library user32.dll"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2571
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2571
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=1347
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2571
Summary: Itunes error when trying to run in Wine
Product: Wine
Version: 20040813
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: test
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: abeidson(a)yahoo.com
I can get Itunes version 4.7 to install under wine.. but I am getting the
following message when trying to run it under wine.
err:module:import_dll No implementation for
WININET.dll.InternetGetConnectedStateExA imported from L"C:\\Program
Files\\iTunes\\iTunes.exe", setting to 0xdeadbeef
fixme:htmlhelp:HtmlHelpW ((nil), (null), 28, 10289772): stub
fixme:ole:CreateClassMoniker {bbeb08f8-9126-4e20-aad3-70b470144c7e}
fixme:crypt:CRYPT_VerifyImage (rsabase.dll, 0x403f33f8): not verifying image
fixme:crypt:RSA_CPCreateHash 403f33f8 32771 00000000 00000000 0x403f341c
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x403f3f60)->(00000000,00000008)
fixme:font:CreateScalableFontResourceA
(0,"c:\\windows\\QTFont.for","c:\\windows\\QTFont.qfn",(null)): stub
fixme:crypt:CRYPT_VerifyImage (rsabase.dll, 0x403fd3b0): not verifying image
fixme:crypt:CRYPT_VerifyImage (rsabase.dll, 0x403fdd58): not verifying image
fixme:crypt:RSA_CPCreateHash 403fdd58 32771 00000000 00000000 0x403fdd7c
err:win:CreateWindowExW bad class name L"RichEdit20W"
fixme:htmlhelp:HtmlHelpW ((nil), (null), 29, 0): stub
fixme:font:WineEngRemoveFontResourceEx :stub
fixme:font:WineEngRemoveFontResourceEx :stub
fixme:font:WineEngRemoveFontResourceEx :stub
fixme:font:WineEngRemoveFontResourceEx :stub
Just wondering if this is something that can be fixed by modifying the config or
if it is more severe than that.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2570
Summary: fixme:midi:OSS_MidiInit Synthesizer support MIDI in. Not
supported yet (please report)
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nuclearfly(a)gmail.com
Ok. I was attempting to install Diablo II: LOD to a successfull install of
Diablo II. I'm running Mandrake 10. When I changed to my cdrom directory, and
typed "wine install.exe" it produced this error. I'm not sure if this is the
proper way to report this, but it said please report. I did a search and
couldn't find this already. If this is the improper way of reporting this,
please let me know, I'm new here. Thanks.
fixme:midi:OSS_MidiInit Synthesizer support MIDI in. Not supported yet (please
report)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2568
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=10
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2569
Summary: wine crash when I access to vfat partitions
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: zdenek.dvorak(a)inzep.cz
This happens
dvorak@linux:~> wine notepad
When I show drive which is mapped into vfat mounted directory (/dev/fd0
-> /media/floppy, /dev/hda1 -> /windows/c, ...), wine is core dumped
(SIGSEGV).
error messages:
err:seh:setup_exception stack overflow 228 bytes in thread 0009 eip 55700c78
esp 55b10f1c stack 0x55b10000-0x55c10000
I use SuSE Linux 9.1 on AMD64.
I tested the same wine binary on the same OS (SuSE Linux 9.1) on Celeron and
all is OK.
I try recompile wine on my system but no difference.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=85
scott(a)open-vote.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |ASSIGNED
------- Additional Comments From scott(a)open-vote.org 2004-16-11 04:09 -------
The new intro (complete with a fix for my spelling errors) is in CVS, but before
I close this bug I'm gonna redo the Getting Wine chapter as well.
Not sure whether it will remain a seperate chapter as it is or be merged into
the end of the introduction or the beginning of the configuration chapter yet.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are on the CC list for the bug, or are watching someone who is.
http://bugs.winehq.org/show_bug.cgi?id=2568
Summary: visual bug with ms word 2000
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: panov(a)canopus.iacp.dvo.ru
The file attached incorrectly displayed in ms word 2000 when that run under wine
without windows installation. Look at screenshot #1. This may be repeated after
scrolling. Screenshot #2 displays this file at high magnification. Some letter
are very small.
Wine is run on linux-2.4.27, xorg-6.8.1, freetype-2.1.9.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2567
Summary: 1608 Error running install shield
Product: Wine
Version: 20041019
Platform: PC
OS/Version: All
Status: UNCONFIRMED
Severity: critical
Priority: P4
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: m_seldin(a)mail.ru
When i run Rome Total War install shield setup i recieve 1608 error :
1608 unable to create install driver instance , return code : -2147024894.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2566
Summary: wineprefixcreate -u hang on Mandrake 10.1
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: olive_esseret(a)yahoo.com
The command wineprefixcreate -u (called the first time you lauch wine) never
terminate on Mandrake 10.1; wine-20041019. This appers as well with the rpms or
with wine compiled from source. Although it appears most of the time, it has
worked correctly one time and worked correctly on Mandrake 10.0
Olive Esseret
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2235
panov(a)canopus.iacp.dvo.ru changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
Version|20040505 |20041019
------- Additional Comments From panov(a)canopus.iacp.dvo.ru 2004-14-11 22:55 -------
It seems to be fixed in wine-20041019.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2565
------- Additional Comments From rklazes(a)xs4all.nl 2004-14-11 10:49 -------
That is the point where the build process takes the most memory. More then you
have probably.
Add some more swap should fix it.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2565
jtuggle(a)umd.edu changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20041019 |CVS
------- Additional Comments From jtuggle(a)umd.edu 2004-14-11 10:32 -------
My apologies -- it was the CVS version as of 2004-11-13. I will try again with
the November release and get back to you on that. Resolve this one if you see fit.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2565
Summary: Compile stops at winetest
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-help
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jtuggle(a)umd.edu
I downloaded the 20041019 release using CVS on to a Fedora Core 3 system running
on an Intel Centrino chip (it's a Dell Inspiron 2500 laptop). I then ran
tools/wineinstall as a normal user. Everything seemed to proceed normally until
it tried to make winetest.exe.so. It looks like I'm getting logged out, not
rebooted. When I logged back in and ran wineinstall again, it skipped over the
stuff it had already done, then got to winetest.exe.so, and failed again. This
time I sat and watched what happened -- after about a minute, the hard drive
started reading/writing like crazy. Another minute later and the interface
became unresponsive -- couldn't even move the mouse, and the clock stopped
ticking. 6 minutes later, it very slowly started logging me out of the GNOME
session. The hard drive was going the whole time. After my processes were killed
and the X server restarted, I was back at the login screen. Please let me know
what further information would be helpful.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=430
------- Additional Comments From dclark(a)akamail.com 2004-14-11 10:20 -------
No apologies are needed. I'm hoping to encourage you to make changes and submit
it to wine-patches.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2564
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |trivial
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-13-11 20:37 -------
How critical is this? A normal install can be done like this:
#./configure
#make depend && make
#su
$make install
wineinstall does the same thing but does it in a script.
There is no reason that you can't do this instead.
#./configure
#make depend && make
#sudo su
$make install
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2564
scott(a)open-vote.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |critical
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2564
------- Additional Comments From scott(a)open-vote.org 2004-13-11 18:54 -------
Running sudo su before running wineinstall doesn't fix the problem, as
wineinstall won't let itself be run as root.
If there's an enivronment variable out there standard for systems with root
account disabled, wineinstall should check it and then use sudo instead.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2564
Summary: Wineinstall broken on systems with root user disabled
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: scott(a)open-vote.org
I run Ubuntu, which disables the root user and relies on sudo instead.
Wineinstall's script makes use of su, which presents a problem when it's not
enabled.
Wineinstall fails with this error:
Performing 'make install' as root to install binaries, enter root password
Password:
su: Authentication failure
Sorry.
Password:
su: Authentication failure
Sorry.
Either you entered an incorrect password or we failed to
run 'make install;echo /usr/local/lib>>/etc/ld.so.conf;/sbin/ldconfig' correctly.
If you didn't enter an incorrect password then please
report this error and any steps to possibly reproduce it to
http://bugs.winehq.org/
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=430
------- Additional Comments From rtomsick(a)gmail.com 2004-13-11 17:48 -------
Sorry about that... this is my first time really contributing to the code, so
I'm a bit of a newbie here. My apologies about that...
I guessed globals wouldn't be good, but I didn't really know.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
------- Additional Comments From michael(a)heiming.de 2004-13-11 13:23 -------
Hi!
Thx a bunch for the patch, could install now "InstMsiA.exe" without problems.
But alas mapsource install still fails with the same message, that it can't find
mapsource CD1, even if the original Garmin CD is mounted.
Trying to make an overlapping mount with an image of one CD doesn't work, due to
name conflicts.;(
Install looks much cleaner now, after installing "InstMsiA.exe":
$WINEDLLOVERRIDES="ole32,oleaut32,rpcrt4=n,msi,usp10,sdbapi,riched20,mspatcha,msisip,msimsg,msiexec.exe,cabinet"
/opt/wine-cvs/bin/wine /mnt/cdrom/Setup.exe
fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum
fixme:win:SetWindowTextA cannot set text "InstallShield Wizard" of other process
window (nil)
fixme:win:SetWindowTextA cannot set text "MapSource" of other process window (nil)
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:win:SetWindowTextA cannot set text "InstallShield Wizard" of other process
window (nil)
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
Mapsource installs but on start of MapSource.exe it says:
"MapSource could not find any installed products."
"Please install one or more MapSource products and start MapSource again"
If I only could.;(
Started the installer from the second CD (There are 3, 1 contains only the base
app MapSource, 2+3 contain the Europe City Select maps/etc)
Starts up fine, beginning to install, but fails:
1628: Failed to complete installation
$
WINEDLLOVERRIDES="ole32,oleaut32,rpcrt4=n,msi,usp10,sdbapi,riched20,mspatcha,msisip,msimsg,msiexec.exe,cabinet"
/opt/wine-cvs/bin/wine /mnt/cdrom/setup.exe
fixme:msi:MsiGetProductInfoA "" "PackageCode" 0x77afdc14 0x77afdc4c
fixme:msi:MsiGetProductInfoW L"" L"PackageCode" 0x77c83720 0x77afdc4c
fixme:msi:MsiInstallProductW L"D:\\isscript.msi" L"REBOOT=ReallySuppress
ADDLOCAL=All"
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"SelfUnregModules"
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"RemoveFiles"
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"MoveFiles"
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"RemoveRegistryValues"
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"SelfRegModules"
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"RemoveFolders"
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"InstallFinalize"
fixme:msi:MsiGetProductInfoA "{88AD4F45-AF1E-4A47-A9CE-8A542C6B3728}"
"InstallSource" 0x77aee1d8 0x77aee3dc
fixme:msi:MsiGetProductInfoW L"{88AD4F45-AF1E-4A47-A9CE-8A542C6B3728}"
L"InstallSource" 0x77cc4360 0x77aee3dc
fixme:msi:MsiDatabaseApplyTransformA 1 "C:\\windows\\temp\\_is2b0\\1033.MST" 0
err:dc:DCE_FreeWindowDCE [0x10026] GetDC() without ReleaseDC()!
Thx again for your help, looks like I got a little closer.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
------- Additional Comments From hans(a)it.vu.nl 2004-13-11 11:25 -------
> Installed "InstMsi.exe" from M$, but can't install "InstMsiA.exe",
> which might get me closer to finish install from the second CD?
I have created and submitted a patch that fixes Wine's msiexec so
that InstMsiA.exe will install. It's not applied (yet) but you can
find it here:
http://www.winehq.org/hypermail/wine-patches/2004/11/att-0080/01-msiexec_ms…
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=430
------- Additional Comments From dclark(a)akamail.com 2004-13-11 10:48 -------
You should also post patches to wine-patches, or if you are not sure about them
and would like to discuss them, to wine-devel.
In this case, I don't think the use of global variables will be acceptable.
Perhaps what you need to do is to add members to the DIALOGINFO structure
(defined in dlls/user/controls.h).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2563
Summary: Problem compiling wine 20041019
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-tools
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: pierre42d(a)9online.fr
$ make
make[1]: Entering directory `/tmp/wine-20041019/libs'
make[2]: Entering directory `/tmp/wine-20041019/libs/port'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/wine-20041019/libs/port'
make[2]: Entering directory `/tmp/wine-20041019/libs/unicode'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/wine-20041019/libs/unicode'
make[2]: Entering directory `/tmp/wine-20041019/libs/wine'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/wine-20041019/libs/wine'
make[2]: Entering directory `/tmp/wine-20041019/libs/wpp'
make[2]: Nothing to be done for `all'.
make[2]: Leaving directory `/tmp/wine-20041019/libs/wpp'
make[1]: Leaving directory `/tmp/wine-20041019/libs'
make[1]: Entering directory `/tmp/wine-20041019/tools'
gcc -s -O3 -march=i686 -o sfnt2fnt sfnt2fnt.o -L/usr/local/lib -Wl,--rpath
-Wl,/usr/local/lib -lfreetype -lz -L../libs/unicode -lwine_unicode
-L../libs/port -lwine_port
sfnt2fnt.o(.text+0x3b3): In function `main':
/tmp/wine-20041019/tools/sfnt2fnt.c:168: undefined reference to `wine_cp_get_table'
collect2: ld returned 1 exit status
make[1]: *** [sfnt2fnt] Error 1
make[1]: Leaving directory `/tmp/wine-20041019/tools'
make: *** [tools] Error 2
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=430
------- Additional Comments From rtomsick(a)gmail.com 2004-13-11 06:10 -------
Created an attachment (id=709)
--> (http://bugs.winehq.org/attachment.cgi?id=709&action=view)
Proposed patch-reselects previously selection correctly
Patch retreives start and end positions of selection using EM_GETSEL. It calls
this when it loses focus, and restores them when it gains focus. Works on CVS
as of 11-13-04.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1971
------- Additional Comments From 7ownq0k402(a)sneakemail.com 2004-12-11 20:09 -------
A patch has been checked in that fixes this crash.
So, this bug could be changed to CLOSED FIXED!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2562
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=62
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2562
rklazes(a)xs4all.nl changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|eudora 5.02 : MDI windows |eudora 5.02 : MDI windows
------- Additional Comments From rklazes(a)xs4all.nl 2004-12-11 12:34 -------
This is almost certainly fixed since the release of the old wine you use.
Please install the latest (20041019) wine and try again.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2562
Summary: eudora 5.02 : MDI windows
Product: Wine
Version: 20040213
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: picodon.forever(a)free.fr
Hello,
I use Wine 20040213 and I have problem with the email client EUDORA 5.02.
Eudora has MDI Windows : to read messages, to compose messages, to list mailboxes...
I open a MDI window. I maximise it.
I open a second MDI Windows. I maximise it.
I come back on the first MDI Windows : it is not maximized :(
Wine messages:
StatusWindowProc unknow msg 0530
HeaderWindowProc unknow msg 0530
Regards,
Patrice.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2535
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
------- Additional Comments From mstefani(a)redhat.com 2004-09-11 16:39 -------
Works for me, also on a FC2 but on a desktop system. I can change even from
1280x1024 to 640x480 without any problems. So i wouldn't blame it on Wine.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2107
------- Additional Comments From telford(a)triode.net.au 2004-09-11 01:29 -------
export WINEDLLOVERRIDES="*advapi32=builtin"
This prevents the endless looping, there is some mailing list discussion on this
if you search for "CommonUnimpStub" but still IE5.5 will not install, now it
drops out with a generic Windows error box, "Not all components installed". Very
difficult to find which file it failed on, will try strace. MS-Windows software
is unbelievably painful to debug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2107
------- Additional Comments From telford(a)triode.net.au 2004-08-11 23:19 -------
For what it is worth, this is the result with WINEDEBUG=+relay switched on:
001c:Call kernel32.CommonUnimpStub() ret=00e51d90 fs=003b
eax=00000000 ebx=00e79c0c ecx=002a1508 edx=47770cf0 esi=000278df edi=7f0b0020
ebp=005ffb94 esp=005ff700 ds=007b es=007b gs=0033 flags=00000246
fixme:thunk:CommonUnimpStub generic stub: ?
001c:Ret kernel32.CommonUnimpStub() retval=00000000 ret=00e51d90 fs=003b
eax=00000000 ebx=00e79c0c ecx=002a1508 edx=47770cf0 esi=000278df edi=7f0b0020
ebp=005ffb94 esp=005ff720 ds=007b es=007b gs=0033 flags=00000246
and repeat the above many many times
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2107
------- Additional Comments From telford(a)triode.net.au 2004-08-11 23:06 -------
I'm using Fedora 2 and package wine-20041019-1fc2winehq and I'm trying to
install an ie5.5 from a PC User CDROM. It gets to 63% sometimes and 62% other
times before it hangs. The fixme message just keeps scrolling, even when I try
to cancel.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-06-11 20:45 -------
Try changing your ~/wine/config file with this:
WINE REGISTRY Version 2
[Version]
; Windows version to imitate
(win95,win98,winme,nt351,nt40,win2k,winxp,win2k3,win20,win30,win31)
"Windows" = "nt40"
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
------- Additional Comments From michael(a)heiming.de 2004-06-11 13:05 -------
Copying the Install CD (this one doesn't seem to be copy protected) and starting
from hd, the second CD (City Select 1) already mounted:
$ WINEDLLOVERRIDES="ole32,oleaut32,rpcrt4=n" /opt/wine-cvs/bin/wine
~/mapsource-inst/cdrom/Setup.exe
.wine/dosdevices (contains, among others):
d: -> /mnt/cdrom
e: -> /mnt/cdrom
Doesn't work any better, the damn installer still wants the City select 1 CD and
can't find it, even if in fact an original Garmin "City Select 1 CD" is mounted.
Those are the wine messages on console during the install.
fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum
fixme:vxd:VXD_Open Unknown/unsupported VxD L"nwlink.vxd". Try setting Windows
version to 'nt40' or 'win31'.
fixme:ntdll:NtAllocateLocallyUniqueId 0x77aeecd4
fixme:vxd:VXD_Open Unknown/unsupported VxD L"nwlink.vxd". Try setting Windows
version to 'nt40' or 'win31'.
fixme:win:SetWindowTextA cannot set text "InstallShield Wizard" of other process
window (nil)
fixme:win:SetWindowTextA cannot set text "MapSource" of other process window (nil)
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:vxd:VXD_Open Unknown/unsupported VxD L"nwlink.vxd". Try setting Windows
version to 'nt40' or 'win31'.
fixme:ntdll:NtAllocateLocallyUniqueId 0x77aeecd8
fixme:vxd:VXD_Open Unknown/unsupported VxD L"nwlink.vxd". Try setting Windows
version to 'nt40' or 'win31'.
fixme:win:SetWindowTextA cannot set text "InstallShield Wizard" of other process
window (nil)
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=227
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
------- Additional Comments From michael(a)heiming.de 2004-06-11 08:32 -------
Installing dcom98 and a few dll from WIN98, made things better:
WINEDLLOVERRIDES="ole32,oleaut32,rpcrt4=n" /opt/wine-cvs/bin/wine
/mnt/cdrom/Setup.exe
Thx to Frank's corner for the suggestions found there (http://www.frankscorner.org/)
Mapsource seems to install now, but alas it comes up with a msg box:
[ Please insert City Select 'Disk 1' and click 'Retry' to continue the
installation ]
Now changing the CD doesn't help, it doesn't seem to look at the CD at all.;(
Copying the CDs to hd doesn't seem to work, some copy protection? Damn, bought
the stuff!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
michael(a)heiming.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20041019 |CVS
------- Additional Comments From michael(a)heiming.de 2004-06-11 06:33 -------
Changed to CVS, but alas this blows away more or less in the same way.;(
err:ole:MARSHAL_Register_Proxy Already have mid?
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{3d8b6331-d8b1-11d2-80c5-00104b1f6cea}!
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{6494206f-23ea-11d3-88b0-00c04f72f303}!
fixme:win:SetWindowTextA cannot set text "InstallShield Wizard" of other process
window (nil)
fixme:win:SetWindowTextA cannot set text "MapSource" of other process window (nil)
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from
0x4003 -> 0x2) b69e0000
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{8c3c1b11-e59d-11d2-b40b-00a024b9dddd}!
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{8c3c1b11-e59d-11d2-b40b-00a024b9dddd}!
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{8c3c1b11-e59d-11d2-b40b-00a024b9dddd}!
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{8c3c1b11-e59d-11d2-b40b-00a024b9dddd}!
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
wine: Unhandled exception (thread 0017), starting debugger...
WineDbg starting on pid 0x11
Unhandled exception: page fault on read access to 0xb6400260 in 32-bit code
(0x10004f73).
In 32 bit mode.
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:10004f73 ESP:b77dbfd8 EBP:b77dc040 EFLAGS:00010286( - 00 -RISP1)
EAX:b6400260 EBX:00000000 ECX:0046e10c EDX:77efcf84
ESI:b7c4b16c EDI:77579cfc
Stack dump:
0xb77dbfd8: 00000001 775c7444 775c7578 100081c4
0xb77dbfe8: b6de01f0 00000081 100081b4 00000000
0xb77dbff8: 100081ac 0000007a b6a806e4 77579d7a
0xb77dc008: b6d80003 b60851c0 b6875788 b6d86d52
0xb77dc018: b77d0000 10008100 b77d0000 00430916
0xb77dc028: 77efd144 b6400310 b6de0164 b6400260
Backtrace:
=>1 0x10004f73 (0xb77dc040)
2 0x77590b09 .L2222+0x8 in oleaut32 (0xb77dc05c)
3 0x775874d1 TMStubImpl_Invoke+0x335(iface=0xb75e99c8, xmsg=0xb77dc134,
rpcchanbuf=0x0) [/tmp/wine-cvs/wine/dlls/oleaut32/tmarshal.c:1665] in oleaut32
(0xb77dc118)
4 0x776745ea COM_InvokeAndRpcSend+0x92(req=0x77cd5400)
[/tmp/wine-cvs/wine/dlls/ole32/rpc.c:351] in ole32 (0xb77dc170)
5 0x7767554b _StubReaderThread+0xab(param=0x77cc4d20)
[/tmp/wine-cvs/wine/dlls/ole32/rpc.c:753] in ole32 (0xb77dc188)
6 0x77ba31c7 THREAD_Start+0xef(ptr=0x77cc4d68)
[/tmp/wine-cvs/wine/dlls/kernel/thread.c:107] in kernel32 (0xb77dc25c)
7 0x77ee267f start_thread+0x14b(info=0x77ca4158)
[/tmp/wine-cvs/wine/dlls/ntdll/thread.c:201] in ntdll (0xb77dca98)
8 0xb7fabdec start_thread+0x9c in libpthread.so.0 (0xb77dcb0c)
9 0xb7f4ae8a __clone+0x5a in libc.so.6 (0x00000000)
0x10004f73: movl 0x0(%eax),%ecx
Wine-dbg>WineDbg terminated on pid 0x11
fixme:ole:read_pipe Read only 0 of 4 bytes from 0x44.
fixme:ole:xCall RpcChannelBuffer SendReceive failed, 80004005
fixme:ole:write_pipe Failed to write to 0x44, le is e9
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2224
------- Additional Comments From grooveloop7(a)yahoo.com 2004-05-11 22:46 -------
I have the same problems with Sonar 3.x and 4.x, which require windows 2000/xp
to install, and complain about not having administrative privileges when run.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
------- Additional Comments From michael(a)heiming.de 2004-05-11 17:10 -------
Ops, install stops with this message box:
[Microsoft Visual C++ Runtime Library]
Runtime Error!
Program:... Common Files\InstallShild\Engine\6\Intel 32\IKernel.exe
abnormal program termination
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
------- Additional Comments From michael(a)heiming.de 2004-05-11 17:08 -------
Ops, install stops with this message box:
[Microsoft Visual C++ Runtime Library]
Runtime Error!
Program:... Common Files\InstallShild\Engine\6\Intel 32\IKernel.exe
abnormal program termination
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2561
Summary: Fails to install Garmin mapsource completely
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: michael(a)heiming.de
/usr/local/bin/wine /mnt/cdrom/Setup.exe
(Garmin MapSource City Select Version 2.01)
fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum
fixme:ole:RegisterTypeLib Registering non-oleautomation interface!
fixme:ole:ITypeInfo_fnRelease destroy child objects
err:ole:MARSHAL_Register_Proxy Already have mid?
fixme:ole:RegisterTypeLib Registering non-oleautomation interface!
err:ole:MARSHAL_Register_Proxy Already have mid?
[ snip a bunch of those for better readability ]
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{3d8b6331-d8b1-11d2-80c5-00104b1f6cea}!
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{6494206f-23ea-11d3-88b0-00c04f72f303}!
fixme:win:SetWindowTextA cannot set text "InstallShield Wizard" of other process
window (nil)
fixme:win:SetWindowTextA cannot set text "MapSource" of other process window (nil)
fixme:shell:BrsFolderDlgProc Set selection "C:\\Garmin"
fixme:shell:BrsFolderDlgProc Set selection "C:\\Garmin"
fixme:ole:_copy_arg Should not use VariantChangeType here. (conversion from
0x4003 -> 0x2) b6a80000
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{8c3c1b11-e59d-11d2-b40b-00a024b9dddd}!
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{8c3c1b11-e59d-11d2-b40b-00a024b9dddd}!
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{8c3c1b11-e59d-11d2-b40b-00a024b9dddd}!
fixme:ole:StdMarshalImpl_UnmarshalInterface Calling back to ourselves for
{8c3c1b11-e59d-11d2-b40b-00a024b9dddd}!
fixme:dialog:MSGBOX_OnInit task modal msgbox ! Not modal yet.
wine: Unhandled exception (thread 0017), starting debugger...
WineDbg starting on pid 0x11
Unhandled exception: page fault on read access to 0xb64a0220 in 32-bit code
(0x10004f73).
In 32 bit mode.
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:10004f73 ESP:b77dbfd8 EBP:b77dc040 EFLAGS:00010282( - 00 - RIS1)
EAX:b64a0220 EBX:00000000 ECX:0046e10c EDX:77efcea4
ESI:b7c4b15c EDI:7757dcfc
Stack dump:
0xb77dbfd8: 00000001 775cb404 775cb538 100081c4
0xb77dbfe8: b6e601f0 00000081 100081b4 00000000
0xb77dbff8: 100081ac 0000007a b6b206e4 7757dd7a
0xb77dc008: b6e20003 b61251c0 b69157b8 b6e26d52
0xb77dc018: b77d0000 10008100 b77d0000 00430916
0xb77dc028: 77efd064 b64a02d0 b6e60164 b64a0220
Backtrace:
=>1 0x10004f73 (0xb77dc040)
2 0x77594b59 .L2145+0x8 in oleaut32 (0xb77dc05c)
And so on, a few files are installed but on starting Mapsource.exe, there's only
a message thet "MapSource could not find any installed products"
Thx for any help
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2560
Summary: SetWindowPos() doesn't make TOPMOST windows
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: NEW
Severity: minor
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: puoti(a)inwind.it
When the SetWindowPos() is called with the HWND_TOPMOST parameter,
the window passed to the function doesn't become a TOPMOST window.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2525
------- Additional Comments From excyber(a)gmail.com 2004-04-11 09:55 -------
I have experienced this issue on snapshots 20040309 and later.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2559
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-11 17:59 -------
Resolving Fixed.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2559
Summary: Can't match system time zone name "PST" to an entry in
TZ_INFO
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: brian(a)brianjacksonphoto.com
Hi-
I was trying to run the most recent version of NeatImage (www.neatimage.com) and
got this:
fixme:ntdll:TIME_GetTZAsStr Can't match system time zone name "PST" to an entry
in TZ_INFO
fixme:ntdll:TIME_GetTZAsStr Please add appropriate entry to TZ_INFO and submit
as patch to wine-patches
fixme:ntdll:TIME_GetTZAsStr Can't match system time zone name "PST" to an entry
in TZ_INFO
fixme:ntdll:TIME_GetTZAsStr Please add appropriate entry to TZ_INFO and submit
as patch to wine-patches
Segmentation fault
The app installed OK, but won't run.
This is on SuSE 9.1, with the latest wine RPM from the sourceforge site.
I looked, but could not find a TZ_INFO file. Neither TZ_FILE nor tz_file.
Do I need to chage my timezone?
I even tried by copying /usr/share/zoneinfo/PST8PDT to usr/share/zoneinfo/PST
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2554
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-03-11 12:04 -------
I can confirm this, it looks like our built in msvcrt.dll is the problem
if you use a windows msvcrt.dll, and use the dlloverrides it works.
>>>
WINE REGISTRY Version 2
[DllOverrides]
"msvcrt" = "native, builtin"
>>>
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2558
Summary: Wine Hangs up on starting Ie6 and crashes with a so-
valid exit code
Product: Wine
Version: 20040716
Platform: All
URL: http://www.enux.org/
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: halil(a)enux.org
For full description.
http://www.enux.org/bug.txt
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2554
------- Additional Comments From wilson(a)afn.org 2004-02-11 21:18 -------
Created an attachment (id=707)
--> (http://bugs.winehq.org/attachment.cgi?id=707&action=view)
foo.exe w. WINEDEBUG=+file
I'm running FC2 w kernel 2.6.7, wine-20041019.
Another clue: If I fopen(...) instead of freopen(...) it works.
It's as if stdin isn't quite ready to be fiddled with. Very
wierd.
Thanks again for looking at this, Tony.
Jim
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2554
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-02-11 16:51 -------
When I run it it works...
$ wine foo foo.exe
freopen() worked
Redhat 9
Gnome terminal
wine 20041019
This is with foo.exe in the current (home) directory.
If you still get this please attach the results of the following command:
WINEDEBUG=+file wine foo foo.exe >& foolog.out
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2556
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-misc |wine-binary
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2555
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2554
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |download
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-02-11 11:39 -------
you could upload the exec as an attachment. (just a suggestion)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2417
goeran(a)uddeborg.se changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From goeran(a)uddeborg.se 2004-02-11 04:02 -------
I finally got around to have write a patch, only to find somebody else already
had done it a little more than a week ago.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2557
Summary: RichEdit control out of space
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ingenuz(a)hotmail.com
Hi,
I have a problem using wine under linux Mandrake 10.0. In fact when I use
Fuqid.exe, a freenet's tool, Everything is ok during 4 minutes, but after I have
error message ERROR: RichEdit control out of space, then I can't do anything
with it: I can't close wine nor Fuqid. I change settings with winesetuptk, but
nothing.
Can you help me debugging this please?
This is my email: ingenuz(a)hotmail.com
Thanks a lot.
pc:
512 Mo Ram
1 Go AthlonTbird
120 Go HD
Linux: Mandrake 10
Wine without windows
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2556
------- Additional Comments From JoelMontes01(a)gmail.com 2004-01-11 16:25 -------
it should link atleast c: drive by default because its automatically created.
(z: drive linked to root would also give convenience)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2556
Summary: My dosdevices dir is empty
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: JoelMontes01(a)gmail.com
My dosdevices is compleatly empty
Mandrake10 Official
installed via RPM
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2554
Summary: Freopen() fails "invalid argument"
Product: Wine
Version: 20041019
Platform: Other
URL: http://www.afn.org/~wilson/foo.exe
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: wilson(a)afn.org
Environment: mingw w. gcc 2.9.95 as xcompiler under Linux.
Following tiny program fails under Wine, but succeeds under WXP. If you trust
me, executable is available at referenced URL. Invoke it (or your compiled
equivalent):
wine foo foo.exe
(or use any existing file as foo's argument).
#include <stdio.h>
#include <errno.h>
main(int argc, char* argv[]) {
FILE* f; if (argc <= 1) return 0;
if (f = freopen(argv[1], "rb", stdin))
printf("freopen() worked\n");
else
printf("Oh, no! errno=%d\n", errno);
return 0;
}
NOTE: I have another application where freopen(...) is called much later. This
application seems to work!?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2526
------- Additional Comments From jdoutt(a)whoi.edu 2004-01-11 07:37 -------
Thought I'd post the script I use to run 'wxtide32' (a workaround for the
'sprintf' problem)
wine wxtide32;
mv wxtide32.cfg wxtide32_bkup.cfg;
sed -e 's/%//g' wxtide32_bkup.cfg > wxtide32.cfg
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2553
Summary: Asian fonts from Acrobat Reader crashes wine
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: utx(a)penguin.cz
How to repeat:
- Install Acrobat Reader 5.09 for Linux and Asian Fonts for Acrobat Reader 20020815.
- add path to Acrobat Reader font directory to /etc/fonts/local.conf
- Call fc-cache.
- Run wine. All graphical applications will crash with unhandled exception:
31722 open("/opt/Acrobat5/Resource/Font/MSungStd-Light-Acro.otf", O_RDONLY) = 9
31722 fcntl64(9, F_SETFD, FD_CLOEXEC) = 0
31722 fstat64(9, {st_mode=S_IFREG|0644, st_size=8351624, ...}) = 0
31722 mmap2(NULL, 8351624, PROT_READ, MAP_PRIVATE, 9, 0) = 0x40adb000
31722 close(9) = 0
31722 --- SIGSEGV (Segmentation fault) @ 0 (0) ---
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2552
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-31-10 12:36 -------
Fixed it..
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2551
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=600
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2530
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-31-10 12:28 -------
Closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2530
aeotto(a)adelphia.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From aeotto(a)adelphia.net 2004-30-10 14:43 -------
Don't I feel like an idiot. Somehow, I had inadvertently saved the file,
decorrupt_explorer, as a wordprocessing (.doc) file. When I tried to run it in
a shell, nothing happened.
I just went back the Andi Mohr's download page and saved the file
(decorrupt_explorer) as a (.txt) file to my desktop. As soon as I clicked on
it, it informed me that it was an executable file and asked me if I wanted to
save it or run it in a terminal, or something like that. I did, and it worked
like a charm. My Windows system is back.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1142
------- Additional Comments From wine(a)deesconsulting.com 2004-29-10 17:56 -------
My concerns in Comments #5 and #6 appear to have been unfounded, or at least
exaggerated. Those calls 1) succeed normally 2) place a lock on the indicated
byte region that cannot be duplicated and 3) lsof is apparently oblivious to
such locks. I can't say why lsof doesn't consider those locks worthy of
reporting, except that the locks fall outside the file region.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1142
------- Additional Comments From wine(a)deesconsulting.com 2004-29-10 17:48 -------
It looks as though Word XP (with cxoffice 2.1.0) accessing a Samba share (in
FC1) is failing to release locked files on close:
Locked files:
Pid DenyMode Access R/W Oplock Name
-----------------------------------------------------------
7156 DENY_NONE 0x1 RDONLY NONE /tmp/deleteme/blah.doc
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=526
fgouget(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From fgouget(a)codeweavers.com 2004-29-10 04:20 -------
Isn't this supposed to be marked resolved? I must have forgotten to change the
status when I sent my last comment.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1641
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
------- Additional Comments From dank(a)kegel.com 2004-29-10 01:15 -------
I get a similar error installing the free demo from
www.keyhole.com.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2550
Summary: Won't build with GCC-3.4.2
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: tyrerj(a)acm.org
When building I get this error:
make[2]: Entering directory `/home/jrt/wine-20041019/dlls/kernel'
/usr/local/bin/gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__
-D_KERNEL32_ -DETCDIR="\"/usr/local/etc\"" -D_REENTRANT -fPIC -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith
-I/usr/local/ssl/include -I/usr/gnome2/include -march=k6-3 -mtune=k6-3 -O2 -o
heap.o heap.c
heap.c: In function `GlobalLock':
heap.c:252: sorry, unimplemented: inlining failed in call to 'GetProcessHeap':
redefined extern inline functions are not considered for inlining
heap.c:403: sorry, unimplemented: called from here
heap.c:252: sorry, unimplemented: inlining failed in call to 'GetProcessHeap':
redefined extern inline functions are not considered for inlining
heap.c:427: sorry, unimplemented: called from here
make[2]: *** [heap.o] Error 1
make[2]: Leaving directory `/home/jrt/wine-20041019/dlls/kernel'
make[1]: *** [kernel] Error 2
make[1]: Leaving directory `/home/jrt/wine-20041019/dlls'
make: *** [dlls] Error 2
and the build continues. Then, later, I get this error:
make[2]: Entering directory `/home/jrt/wine-20041019/dlls/kernel'
/usr/local/bin/gcc -c -I. -I. -I../../include -I../../include -D__WINESRC__
-D_KERNEL32_ -DETCDIR="\"/usr/local/etc\"" -D_REENTRANT -fPIC -Wall -pipe
-mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+ -Wpointer-arith
-I/usr/local/ssl/include -I/usr/gnome2/include -march=k6-3 -mtune=k6-3 -O2 -o
heap.o heap.c
heap.c: In function `GlobalLock':
heap.c:252: sorry, unimplemented: inlining failed in call to 'GetProcessHeap':
redefined extern inline functions are not considered for inlining
heap.c:403: sorry, unimplemented: called from here
heap.c:252: sorry, unimplemented: inlining failed in call to 'GetProcessHeap':
redefined extern inline functions are not considered for inlining
heap.c:427: sorry, unimplemented: called from here
make[2]: *** [heap.o] Error 1
make[2]: Leaving directory `/home/jrt/wine-20041019/dlls/kernel'
make[1]: *** [kernel] Error 2
make[1]: Leaving directory `/home/jrt/wine-20041019/dlls'
make: *** [dlls] Error 2
It appears that GetProcessHeap is redifined.
--
JRT
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2547
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=530
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2549
Summary: GigaStudio 96 fails to run - Visual C++ Runtime Library
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-resources
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markknecht(a)gmail.com
When attempting to run GigaStudio 96 it fails with a dialog box and the
following error messages:
Microsoft Visual C++ Runtime Library
Program C:\Program Files\NemeSys\GStudio\GStudio.exe
abnormal program termination
I answer OK and what's left of the program shuts down normally.
I have attempted to capture debug information with WINEDEBUG but there are too
many messages after the failure for me to make sense of the results.
This would be a really wonderful program to run under Wine if possible. There
are no viable Linux replacements for it today.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2548
Summary: GigaStudio 96 installation program (setup.exe)
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markknecht(a)gmail.com
GigaStudio 96 (ver. 2.2 on CD) appears to install correctly, but while
installing the following information shows up in the terminal where I was
running Wine:
flash cdrom $ wine /mnt/cdrom/Setup.Exe
flash cdrom $ fixme:ole:CoRegisterMessageFilter stub
fixme:shell:Stream_WriteLocationInfo writing empty location info
fixme:shell:Stream_WriteLocationInfo writing empty location info
fixme:shell:Stream_WriteLocationInfo writing empty location info
err:menubuilder:WinMain failed to build menu item for C:\windows\Start
Menu\Programs\NemeSys\Read Me.lnk
fixme:shell:Stream_WriteLocationInfo writing empty location info
fixme:shell:Stream_WriteLocationInfo writing empty location info
fixme:shell:Stream_WriteLocationInfo writing empty location info
fixme:ole:CoRegisterMessageFilter stub
fixme:shell:SHELL32_DllCanUnloadNow (void): stub
fixme:shell:SHELL32_DllCanUnloadNow (void): stub
fixme:setupapi:SetupDiGetClassDevsA {4d36e96c-e325-11ce-bfc1-08002be10318}
(null) (nil) 00000002
fixme:setupapi:SetupDiEnumDeviceInfo 0xffffffff 0 0x77abf464
fixme:seh:EXC_RtlRaiseException call to unimplemented function
setupapi.dll.SetupDiCreateDeviceInfoA
wine: Unhandled exception (thread 000b), starting debugger...
WineDbg starting on pid 0xa
Unhandled exception: unimplemented function
setupapi.dll.SetupDiCreateDeviceInfoA called in 32-bit code (0x77985051).
In 32 bit mode.
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:77985051 ESP:77abf3d4 EBP:77abf438 EFLAGS:00000216( - 00 - IAP1)
EAX:77abf3e0 EBX:779afa74 ECX:77abf46c EDX:77eff3e6
ESI:77b871f0 EDI:77abf540
Stack dump:
0x77abf3d4: 779a68a5 77abf3fc 77ebb042 80000100
0x77abf3e4: 00000001 00000000 0040307e 00000002
0x77abf3f4: 779a11a0 779a2980 77abf41c b7fbae2e
0x77abf404: 00000000 779af970 779a685b 779a68a5
0x77abf414: 77abf434 779afa74 77abf444 77992f59
0x77abf424: 00000000 779af970 779a685b 779a68a5
Backtrace:
=>1 0x77985051 __wine_unimplemented+0x51 in setupapi (0x77abf438)
2 0x77987136 __wine_stub_setupapi_dll_285+0x0 in setupapi (0x77abf448)
3 0x0040307e (0x77abf9d0)
4 0x77abfa78 (0x004547cc)
5 0x00000000 (0x00411810)
0x77985051 __wine_unimplemented+0x51 in setupapi: subl$4,%esp
Wine-dbg>WineDbg terminated on pid 0xa
flash cdrom $
NOTE: GSt96 doesn't run correctly. It may or may not be due to this error.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2547
Summary: word perfect 12 trial fails to run
Product: Wine
Version: CVS
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: grog(a)grsu.by
Word perfect 12 trial fails to run.
Working installation was copied from windows together with several needed native
dlls.
Output is:
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name)
:
err:keyboard:X11DRV_ToUnicodeEx (virtKey=0,scanCode=0,keycode=8,state=0)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name)
:
err:keyboard:X11DRV_ToUnicodeEx (virtKey=0,scanCode=0,keycode=8,state=1)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym FE20
(ISO_Left_Tab) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=9,scanCode=F,keycode=17,state=1)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym FEF9
(Pointer_EnableKeys) :
err:keyboard:X11DRV_ToUnicodeEx (virtKey=90,scanCode=45,keycode=4D,state=1)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name)
:
err:keyboard:X11DRV_ToUnicodeEx (virtKey=FC,scanCode=0,keycode=0,state=0)
err:keyboard:X11DRV_ToUnicodeEx Please report: no char for keysym 0000 (No Name)
:
err:keyboard:X11DRV_ToUnicodeEx (virtKey=FC,scanCode=0,keycode=0,state=1)
fixme:imagehlp:CheckSumMappedFile (0x41d20000, 6262832, 0x4068f58c, 0x4068f590):
stub
fixme:ole:CoRegisterMessageFilter stub
fixme:ole:CoRegisterMessageFilter stub
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2507
------- Additional Comments From adam(a)gimp.org 2004-28-10 06:07 -------
I, too, see this problem. I'd confirm the bug if I had perms. :)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2524
------- Additional Comments From adam(a)gimp.org 2004-28-10 06:07 -------
The patch for bug 2534 seems to fix the keyboard issue.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2534
------- Additional Comments From adam(a)gimp.org 2004-28-10 06:06 -------
This patch also appears to fix the keyboard in Fallout2 (but not the mouse).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2546
Summary: unable to play sound of flash files
Product: Wine
Version: 20040914
Platform: HP
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: sree.vallidhara(a)hp.com
i have installed Mandrek9.1 linux and i use wine to play some 3d and flash
content progaram. My problem is i am able to start the program but iam unable
hear to the sound bounded with it and even no error is created. Thanx please
let me know if you are need of some more details and let me know how can i get
those. thanx once again.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2545
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2543
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2541
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=278
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2542
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=1071
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2534
------- Additional Comments From reif(a)earthlink.net 2004-27-10 20:03 -------
The patch is correct. Please submit it to wine-patches(a)winehq.org.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2545
Summary: GigaSampler LE Ver. 1.6 (old) won't install
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markknecht(a)gmail.com
Running the install program from the CD fails. This is a very old version of he
program that is no longer available but was include with many semi-pro sound
cards. I'm submitting this bug report just to document that I tried to install
the program.
cd /mnt/cdrom
flash cdrom $ wine SETUP.EXE
wine: Unhandled exception (thread 000c), starting debugger...
WineDbg starting on pid 0xb
Unhandled exception: page fault on read access to 0x77fb063a in 32-bit code
(0x004851b7).
In 32 bit mode.
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:004851b7 ESP:77abfe48 EBP:77abfe9c EFLAGS:00010202( - 00 - -RI1)
EAX:004d0000 EBX:77bfe008 ECX:00000040 EDX:77ae0636
ESI:77fb063a EDI:004992e8
Stack dump:
0x77abfe48: 00483087 77eff7c0 77bfe008 00000044
0x77abfe58: 00000000 00000000 00000000 00000000
0x77abfe68: 00000000 00000000 00000000 00000000
0x77abfe78: 00000000 00000000 00000001 00000001
0x77abfe88: 77ae0636 00000008 0000000c 00000010
0x77abfe98: 004d0000 77abff20 004830f9 00483087
Backtrace:
=>1 0x004851b7 (0x77abfe9c)
2 0x004830f9 EntryPoint+0x72 in _ins0432._mp (0x77abff20)
3 0x77b65122 start_process+0xf2(arg=0x0)
[/home/mark/CODE/WINE/wine-20041019/dlls/kernel/process.c:1022] in kernel32
(0x77abfff4)
4 0xb7fbd151 wine_switch_to_stack+0x11 in libwine.so.1 (0x00000000)
0x004851b7: repe movsl(%esi),%es:(%edi)
Wine-dbg>bt
Backtrace:
=>1 0x004851b7 (0x77abfe9c)
2 0x004830f9 EntryPoint+0x72 in _ins0432._mp (0x77abff20)
3 0x77b65122 start_process+0xf2(arg=0x0)
[/home/mark/CODE/WINE/wine-20041019/dlls/kernel/process.c:1022] in kernel32
(0x77abfff4)
4 0xb7fbd151 wine_switch_to_stack+0x11 in libwine.so.1 (0x00000000)
Wine-dbg>quit
WineDbg terminated on pid 0xb
flash cdrom $
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2544
Summary: http://www.winehq.org/hypermail/wine-
cvs/2004/05/0228.html breaks jack_fst
Product: Wine
Version: CVS
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-loader
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markknecht(a)comcast.net
I've been using jack_fst for some time with older versions of Wine. I've wanted
to update and use more recent versions but I found that I couldn't use anything
more recent than wine-20040505 without causing jack_fst to segfault.
Today, following the chapter on regression testing and with Duane Clark's help I
plowed my way through the individual updates and discovered that it was the
following update that causes my problems:
http://www.winehq.org/hypermail/wine-cvs/2004/05/0228.html
As I am not a programmer I am going to have a hard time figuring out what the
problem is, and likewise since the problem requires the use of a lot of
non-Linux Windows VSTs I think it will be difficult for you to set up the
failure. I'm very willing to try fixes and install patches to test this out and
fix the problem so that I can use wine-20041019.
This machine is Gentoo, but I've seen the same problem on FC2.
Gentoo2 root # emerge info
Portage 2.0.51_rc9 (default-x86-1.4, gcc-3.3.4, glibc-2.3.3.20040420-r2,
2.6.8-gentoo-r3 i686)
I am using NPTL.
jack_fst and fst itself are available at:
http://linuxaudiosystems.com/fst/
I do not suggest that you try setting this program up as it's instructions are
currently out of date. Rather, please take advantage of me and I'll do the
testing quickly.
While this may seem like a bit of an obscure program, having it run correctly is
of a lot of interest to the Linux audio community as it begins to make available
100's if not 1000's of Windows VSTs.
http://www.kvr-vst.com/http://www.djcj.org/LAU/ladspavst/
It will also help in getting a lot of Linux audio users up to the latest version
of Wine instead of back in 2003 versions that they use today.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1821
jerome.bouat(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|button label not redrawn |button label not well
| |redrawn
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2004-27-10 13:58 -------
with 20041019 version, labels seem to be redrawn but they are not well readable
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2541
jerome.bouat(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Bug 2541 depends on bug 2023, which changed state.
Bug 2023 Summary: [M Flight Simulator] wine crashed
http://bugs.winehq.org/show_bug.cgi?id=2023
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXEDBug 2541 depends on bug 2023, which changed state.
Bug 2023 Summary: [M Flight Simulator] wine crashed
http://bugs.winehq.org/show_bug.cgi?id=2023
What |Old Value |New Value
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2004-27-10 13:55 -------
wine crashed with previous versions instead of being blocked (see bug #2023)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2023
jerome.bouat(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2004-27-10 13:51 -------
seem fixed on 20041019 version
but wine does not crash but is blocked instead (see bug #2541).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2541
Summary: [Microsoft Flight Simulator 98] wine blocked
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jerome.bouat(a)wanadoo.fr
I installed Microsoft Flight Simulator 98 with default settings. I choosed the
default flight. The game window began to be displayed when wine blocked. I had
to use Ctrl-C in order to stop wine.
Here is the log:
----------------
[j@penguin tmp]$ wine /mnt/cdrom/Install.exe
Converted temp dir to new entry HKCU\Environment "TEMP" = L"e:\\"
Converted path dir to new entry HKCU\Environment "PATH" =
L"c:\\windows;c:\\windows\\system;e:\\"
Converted profile dir to new entry HKCU\Environment "USERPROFILE" =
L"c:\\windows\\Profiles\\Administrator"
Converted windows dir to new entry HKCU\Environment "windir" = L"c:\\windows"
Converted system dir to new entry HKCU\Environment "winsysdir" =
L"c:\\windows\\system"
Loading required GL library /usr/X11R6/lib/libGL.so.1.2
fixme:shell:Stream_WriteLocationInfo writing empty location info
Loading required GL library /usr/X11R6/lib/libGL.so.1.2
err:menubuilder:fork_and_wait wineshelllink returned 1
err:menubuilder:InvokeShellLinker failed to fork and exec wineshelllink
fixme:shell:Stream_WriteLocationInfo writing empty location info
Loading required GL library /usr/X11R6/lib/libGL.so.1.2
err:menubuilder:fork_and_wait wineshelllink returned 1
err:menubuilder:InvokeShellLinker failed to fork and exec wineshelllink
Loading required GL library /usr/X11R6/lib/libGL.so.1.2
fixme:winhelp:WinMain Unsupported cmd line: fs98.hlp
[j@penguin tmp]$ Loading required GL library /usr/X11R6/lib/libGL.so.1.2
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x4037a5a8)->(00020024,00000008)
fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum
fixme:dsound:IDirectSoundImpl_SetCooperativeLevel level=DSSCL_PRIORITY not fully
supported
fixme:bitmap:X11DRV_DIB_GetImageBits Compression not yet supported!
fixme:ddraw:Main_DirectDrawClipper_Initialize
(0x41ec2a48)->(0x4037a5b4,0x00000000),stub!
fixme:ddraw:Main_DirectDrawClipper_Initialize
(0x4039a800)->(0x4037a5b4,0x00000000),stub!
fixme:ddraw:Main_DirectDrawClipper_Initialize
(0x41ec4000)->(0x4037a5b4,0x00000000),stub!
fixme:bitblt:X11DRV_BitBlt potential optimization - client-side DIB copy
fixme:imm:ImmGetContext (0x10074): stub
fixme:imm:ImmSetOpenStatus Semi-Stub
fixme:imm:ImmReleaseContext (0x10074, 0x4036b758): stub
fixme:imm:ImmGetContext (0x1007a): stub
fixme:imm:ImmSetOpenStatus Semi-Stub
fixme:imm:ImmReleaseContext (0x1007a, 0x4036b758): stub
fixme:bitblt:X11DRV_BitBlt potential optimization - client-side DIB copy
fixme:imm:ImmGetContext (0x10074): stub
fixme:imm:ImmNotifyIME (0x4036b758, 21, 4, 0): stub
fixme:imm:ImmReleaseContext (0x10074, 0x4036b758): stub
fixme:imm:ImmGetDefaultIMEWnd (0x10074 - (nil) 0x4036b758 ): semi-stub
fixme:imm:ImmGetDefaultIMEWnd (0x10074 - 0x10088 0x4036b758 ): semi-stub
fixme:imm:ImmGetDefaultIMEWnd (0x10074 - 0x10088 0x4036b758 ): semi-stub
fixme:imm:ImmGetDefaultIMEWnd (0x10074 - 0x10088 0x4036b758 ): semi-stub
err:local:LOCAL_ReAlloc Needed to move fixed block, but LMEM_MOVEABLE not specified.
fixme:ddraw:Main_DirectDrawClipper_Initialize
(0x41efa978)->(0x4037a5b4,0x00000000),stub!
fixme:mmtime:timeBeginPeriod Stub; we set our timer resolution at minimum
[j@penguin tmp]$
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2168
jerome.bouat(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20040408 |20041019
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2004-27-10 13:39 -------
always occur with latest version
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2540
Summary: wine disappears from the screen
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: rauchholz(a)ipn-gmbh.de
I installed wine with no problem and I also load with no problem the pllication.
But working with it is not possible. wine disappears fro the screen with no
message, but when you call wine from the command line so see this
err:syslevel:_EnterSysLevel (0x4078ed80, level 2): Holding 0x4083cf80, level 3.
Expect deadlock!
err:syslevel:_EnterSysLevel (0x4078ed80, level 2): Holding 0x4083cf80, level 3.
Expect deadlock!
err:syslevel:_EnterSysLevel (0x4078ed80, level 2): Holding 0x4083cf80, level 3.
Expect deadlock!
err:syslevel:_CheckNotSysLevel Holding lock 0x4083cf80 level 3
wine: Unhandled exception (thread 001b), starting debugger...
WineDbg starting on pid 0x1a
In 32 bit mode.
0x00000000: addb %al,0x0(%eax)
Wine-dbg>
Wine-dbg>
Wine-dbg>
Wine-dbg>
Wine-dbg>
Wine-dbg>
Wine-dbg>
Wine-dbg>
Wine-dbg>Ctrl-C: stopping debuggee
err:seh:setup_exception nested exception on signal stack in thread 001b eip
ffffe40e esp 401e5b10 stack 0x40590000-0x40690000
ipnspain@linux:~>
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2539
Summary: XDND (Drag and drop for X Windows) doesn't copy text
Product: Wine
Version: 20040716
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: emperorbma(a)cox.net
When I drag a text selection into an application that has a textbox in WINE, it
does not copy the selection at all, even though the icon would seem to indicate
that the textbox element itself is XdndAware...
(reporting since a search doesn't seem to turn up anything for this)
Reference: http://freedesktop.org/Standards/XDND
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=825
Keywords| |download
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2538
Summary: Reaktor menus not displayed properly - gray bars
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gdi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: markknecht(a)comcast.net
Menus in Reaktor are displayed as horizontal gray bars. I would like to attach a
small png file which shows the problem but there doesn't seem to be a place to
do this on this bug tracker. I've tried running WINEDEBUG and trapping info but
so far I don't know what to look for. I don't know what other info to provide.
The machine is Gentoo based. I've seen the problem not only with 20041019 but
also with 20040505.
flash root # emerge info
Portage 2.0.51-r2 (default-x86-2004.0, gcc-3.3.4, glibc-2.3.4.20041006-r0,
2.6.9-rc2-mm4-VP-S7-UMP-noACPI i686)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2531
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2004-26-10 15:48 -------
I also have the same problem on Mandrake Linux 10.1 Community.
Here is the log:
----------------
[j@penguin tmp]$ wine /mnt/cdrom/INSTALL.EXE
Loading required GL library /usr/X11R6/lib/libGL.so.1.2
fixme:font:WineEngRemoveFontResourceEx :stub
fixme:font:WineEngRemoveFontResourceEx :stub
[j@penguin tmp]$ Loading required GL library /usr/X11R6/lib/libGL.so.1.2
fixme:msi:MsiEnableLogA 00000516 "e:\\Office 2000 Professional Setup
(0002)_MsiExec.txt" 00000000
fixme:msi:MsiInstallProductW L"D:\\data1.msi" L""
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"AppSearch"
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"ResolveSource"
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
wine: Unhandled exception (thread 000b), starting debugger...
WineDbg starting on pid 0xa
Couldn't initiate DbgHelp
Unhandled exception: page fault on read access to 0x00000018 in 32-bit code
(0x406e3de7).
In 32 bit mode.
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:406e3de7 ESP:406a73e4 EBP:406a7410 EFLAGS:00210246( - 00 -RIZP1)
EAX:00000000 EBX:406fc5e8 ECX:00000000 EDX:406fc4e8
ESI:00000000 EDI:42368ab0
Stack dump:
0x406a73e4: 406dc8d3 00000000 406a740c 406fc4e8
0x406a73f4: 406fbe80 406fc4e8 406fc4e8 00000005
0x406a7404: 406fc5e8 42368258 00000000 406a742c
0x406a7414: 406e1448 42368b00 00000000 406fc5e8
0x406a7424: 42368258 00000000 406a744c 406e14c6
0x406a7434: 42368258 00000000 000000f5 00000002
Backtrace:
=>1 0x406e3de7 (0x406a7410)
2 0x406e1448 (0x406a742c)
3 0x406e14c6 (0x406a744c)
4 0x10002f9a (0x00000000)
0x406e3de7: movl 0x18(%eax),%eax
Wine-dbg>WineDbg terminated on pid 0xa
[j@penguin tmp]$
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2411
jerome.bouat(a)wanadoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Version|20040716 |20041019
------- Additional Comments From jerome.bouat(a)wanadoo.fr 2004-26-10 13:24 -------
Still occur with new release 20041019.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2536
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Keywords| |NoAppDBEntry
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2535
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=72
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2534
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=376
Keywords| |regression
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2531
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=995
Keywords| |regression
Summary|Can no longer install MS |Can no longer install MS
|Office 2000 |Office 2000
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2528
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-26-10 12:40 -------
*** Bug 2529 has been marked as a duplicate of this bug. ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2529
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=25
Status|UNCONFIRMED |RESOLVED
Resolution| |DUPLICATE
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-26-10 12:40 -------
*** This bug has been marked as a duplicate of 2528 ***
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2528
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://appdb.winehq.org/appv
| |iew.php?appId=25
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2517
tony_lambregts(a)telusplanet.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony_lambregts(a)telusplanet.net 2004-26-10 12:37 -------
closing
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2170
------- Additional Comments From pealfa(a)yahoo.es 2004-26-10 03:11 -------
I have also received the error message.
Now I use wine20041019 with Mandrake10 without Windows.
The message appears at the end of the installation, when he/she says:
"Registering changes...."
Word is installed, but when throwing it he/she says: "Damages have been detected
in the registration...". gallery doesn't work, PhotoEditor,...
Neither Access works, because he/she says: "You don't have license to use it in
this computer."
The bug prevents that the installation keeps the data in the registration the
registration, because using a previous installation (of wine20030911) everything
works perfectly.
Greetings
Pepe Álvarez
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2517
mstefani(a)redhat.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|ASSIGNED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mstefani(a)redhat.com 2004-25-10 17:06 -------
Patch was accepted into CVS: http://cvs.winehq.org/patch.py?id=14299
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2536
Summary: buttons unreachable in documan
Product: Wine
Version: 20040716
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-gui
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: boldra(a)tiscali.it
It's a visualization bug founded in aplication "Documan", used to make use of
the scanner tamarack artiscan. The application works great and the scanner works
too, but the buttons (with icons), that appear in the windows "configuration",
are misplaced, so unreachable because go out of the visible window.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2535
Summary: Starcraft not adjusting screen resolution correctly
Product: Wine
Version: 20041019
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jluka(a)geshp.com
When running Starcraft, which defaults to going fullscreen 640x480, the video
gets scrambled if it was launched while the screen is at 1024x768 resolution.
If the computer was already at 640x480 before Starcraft started, it runs fine.
Running Fedora Core 2 on an HP Laptop (ze5730us) with a Radion IGP 435M. (64meg)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2534
adam(a)gimp.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |adam(a)gimp.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2534
Summary: Grim Fandango startup crash (regression; possible patch
included)
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-directx
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: torbjorn.e.andersson(a)tietoenator.com
Grim Fandango has been broken for the past two Wine snapshots (20040915 and
20041019). The startup screen appears, followed almost immediately by an
unhandled exception. CVS regression testing shows that:
The 2004-09-07 14:32:45 CDT snapshot works.
The 2004-09-07 14:33:00 CDT snapshot does not work.
The only change between these two snapshots is revision 1.44 of
include/dinput.h. It adds a DIDEVICEOBJECTDATA_DX3 struct and, more importantly,
adds uAppData to the already existing DIDEVICEOBJECTDATA struct. If I trace
dinput the last two messages before the unhandled exception are:
trace:dinput:SysKeyboardAImpl_Acquire (this=0x403bbee8)
trace:dinput:SysKeyboardAImpl_GetDeviceData
(this=0x403bbee8,16,0x4067fbd4,0x4067fad0(32)),0x00000000)
I'm including a patch to keyboard.c that fixes the problem for me. It's complete
guesswork, based on a somewhat similar code in mouse.c, but it could be the
correct fix I guess.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2533
Summary: the install process should support $DESTDIR
Product: Wine
Version: unspecified
Platform: Other
OS/Version: All
Status: UNCONFIRMED
Severity: enhancement
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: vapier(a)gentoo.org
if you're trying to install wine into a fake root before merging with /, you
currently have to override a number of variables (based upon how many arguements
you passed during ./configure)
for example, if you run `./configure --prefix=/usr`, you'd have to run `make
install prefix=/some/other/place/usr` ... if you passed --prefix and --libdir,
you'd have to pass similar values during `make install` ... all in all, a pita :)
it'd be nice if one could easily just do `make install
DESTDIR=/some/other/place/` like almost every other autotools package out there
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1798
adam(a)gimp.org changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |adam(a)gimp.org
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2532
Summary: Bug in wine-preloader
Product: Wine
Version: 20041019
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: darkjames(a)darkjames.ath.cx
Today, I've upgraded my wine from 20040914 to 20041019 after compilation.
I'd want to check if it is running. And i've tried to run wcmd
after it instead of prompt it writes
{$V+}
/usr/local/bin/wine-pthread: could not open
{$V-}
So i check if it's able to run with: wine-pthread wcmd
{$V+}
$ wine-pthread wcmd
WCMD Version 0.17
F:\>
{$V-}
it works so another test...
{$V+}
$ strace -f /usr/local/bin/wine-preloader /usr/local/bin/wine-pthread wcmd
execve("/usr/local/bin/wine-preloader", ["/usr/local/bin/wine-preloader",
"/usr/local/bin/wine-pthread", "wcmd"], [/* 58 vars */]) = 0
old_mmap(NULL, 1114112, PROT_NONE,
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0
old_mmap(0x80000000, 16777216, PROT_NONE,
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = -1 E??? (errno
-2147483648)
old_mmap(0x110000, 267321344, PROT_NONE,
MAP_PRIVATE|MAP_FIXED|MAP_ANONYMOUS|MAP_NORESERVE, -1, 0) = 0x110000
open("t$|L$@t$`L$4$čú", O_RDONLY) = -1 ENOENT (No such file or directory)
write(2, "/usr/local/bin/wine-pthread: cou"..., 44/usr/local/bin/wine-pthread:
could not open
) = 44
_exit(1) = ?
{$V-}
I've compilated wine with CFLAGS:
-march=athlon-xp -O3 -fomit-frame-pointer -msse -funroll-loops -mfpmath=sse,387
-pipe
CXXFLAGS the same..
gcc version.
gcc (GCC) 3.3.4 20040623 (Gentoo Linux 3.3.4-r1, ssp-3.3.2-2, pie-8.7.6)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2170
------- Additional Comments From dank(a)kegel.com 2004-24-10 01:27 -------
I'm seeing this message installing Office '97 using
a wine built from today's CVS. Which patch supposedly fixed it?
err:seh:setup_exception stack overflow 0 bytes in thread 000c eip 42027602 esp
40621000 stack 0x40620000-0x40720000
Please reopen this bug.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2531
Summary: Can no longer install MS Office 2000
Product: Wine
Version: 20041019
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-programs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: RLloydNave123(a)wmconnect.com
I have been tracking wine versions for a year or so.
As of the May 2004 version I was able to install and run
Microsoft Office 2000 using the MS OFfice installation disk
on Fedora 1.
I have had trouble with the installation with Fedora 2 and
most recently with Fedora 3 test releases.
I have tried about every wine release newer than May 2004
including the October 2004 release.
I installed wine by compiling from source.
( The source install has seemed to work better than the RPM version)
I am not sure if this is a Fedora problem or a wine problem.
Enclosed is a print out of the error messages generated by wine
when I attempted to install MS OFFIce from the install CD :
[ronnave@RonsLinuxBox cdrecorder]$ wine SETUP.EXE
fixme:font:WineEngRemoveFontResourceEx :stub
fixme:font:WineEngRemoveFontResourceEx :stub
[ronnave@RonsLinuxBox cdrecorder]$ fixme:msi:MsiEnableLogA
00000516 "c:\\windows \\temp\\Office 2000 Professional Setup (0002)
_MsiExec.txt" 00000000
fixme:msi:MsiInstallProductW L"Z:\\media\\cdrecorder\\data1.msi" L""
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"AppSearch"
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:ACTION_PerformAction UNHANDLED MSI ACTION L"ResolveSource"
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
fixme:msi:HANDLE_CustomType1 DATABASE NOT THREADSAFE... not starting
wine: Unhandled exception (thread 000b), starting debugger...
WineDbg starting on pid 0xa
fixme:dbghelp:SymLoadModule should have successfully loaded some debug
informati on for image C:\windows\temp\CustomActionDll.dll
Unhandled exception: page fault on read access to 0x00000018 in 32-bit code
(0x7 77c4757).
In 32 bit mode.
Register dump:
CS:0073 SS:007b DS:007b ES:007b FS:003b GS:0033
EIP:777c4757 ESP:778dde4c EBP:778dde8c EFLAGS:00010246( - 00 -RIZP1)
EAX:00000000 EBX:777dd790 ECX:00000000 EDX:777df7a8
ESI:00000000 EDI:7e9ecec0
Stack dump:
0x778dde4c: 777baf6c 00000000 00000000 778dde7c
0x778dde5c: 777bab8e 7e9ec670 7e9ec7f0 7e9ec688
0x778dde6c: 777df7a8 777df5a0 777df7a8 777baaee
0x778dde7c: 00000005 777dd790 7e9ec670 00000000
0x778dde8c: 778ddeb8 777c11d5 7e9ecf10 00000000
0x778dde9c: 778ddeb8 777ba95b 777df5a0 777df5a0
Backtrace:
=>1 0x777c4757 MSI_RecordGetFieldCount+0x7 in msi (0x778dde8c)
2 0x777c11d5 MSI_ViewExecute+0x55 in msi (0x778ddeb8)
3 0x777c1294 MsiViewExecute+0x74 in msi (0x778ddee8)
4 0x10002f9a (0x00000000)
0x777c4757 MSI_RecordGetFieldCount+0x7 in msi: movl 0x18(%eax),%eax
Wine-dbg>WineDbg terminated on pid 0xa
[ronnave@RonsLinuxBox cdrecorder]$
Perhaps I am doing something wrong.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2530
------- Additional Comments From aeotto(a)adelphia.net 2004-23-10 20:29 -------
After removing an earlier version of Wine, which I had not yet used, I
downloaded and installed the latest version. Before configuring the program or
reading the Readme File, I clicked the Wine Reboot program. Error message boxes
started popping up indicating problems in my Windows 98 file system. Becoming
concerned, I closed the error message boxes and the Wine program down as soon as
I could. I logged off Linux and into Windows 98. To my shock, 80% of the icons
on my Windows desktop had disappeared. I opened explorer to find my program
files had been moved to a directory labeled !$!$!$!$.pfr. and other files and
directories were listed under Program Files. Other directories and
subdirectories were also renamed with similar file names.
I posted my problem on a wine news group. A few good people responded with
helpful comments. One of those comments led me to a program writen by Andreas
Mohr titled "decorrupt_explorer", which seems to have been writen for this very
situation. Not having any programing experience, I have spent 20 to 30 hours
over past couple of week trying to execute this program and fix my Windows
partition, without success. At this point, it may not be possible.
It seems this problem with Wine has existed for years. Your Bug Report # 923
mentions this problem. It also indicated that this problem was caused by
Windows explorer, not Wine. I don't believe this is true. Whatever happened,
it was triggered by Wine not Windows.
Since this problem destroys, at least temporarily, a users Windows System, I
would think someone would find it important enough to PROMINENTLY CAUTION
usophisticated users,like me, of what can happen. Furthermore, perhaps someone
could provide some instructions for using Mr. Mohr's program,
"decorrupt_explorer". I couldn't get it to work. I cut and pasted it into a
shell every way I could think of. Nothing seems to work. Its been more that 3
weeks since I have been able to use Windows.
It may be too late for me, but perhaps its not too late to try to prevent this
from happening to someone else.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2530
Summary: Win 98 File System Destroyed
Product: Wine
Version: 20040914
Platform: PC
OS/Version: Windows 98
Status: UNCONFIRMED
Severity: critical
Priority: P1
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: aeotto(a)adelphia.net
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.