http://bugs.winehq.org/show_bug.cgi?id=5094
hallo(a)michael-kaufmann.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
AssignedTo|wine-bugs(a)winehq.org |hallo(a)michael-kaufmann.ch
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From hallo(a)michael-kaufmann.ch 2006-10-05 14:53 -------
I think that the problem is in the function CopyImage(). Wine's version ignores
all flags and is very incomplete. I'm working on a patch.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4861
------- Additional Comments From ivg2(a)cornell.edu 2006-10-05 14:52 -------
It wants YV12 format, which is not supported currently.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5217
Summary: Visual Basic App: Runtime error after "redim preserve"
(OLEAUT32 bug)
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: NEW
Keywords: download, source
Severity: normal
Priority: P2
Component: wine-ole
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: hallo(a)michael-kaufmann.ch
This Visual Basic code works fine on Windows. On Wine, this message appears:
"Run-time error '9': Subscript out of range". It also works with native oleaut32.
Global A() As Integer
Sub Main()
ReDim Preserve A(1 To 3, 1 To 4) As Integer
A(1, 1) = 100
A(3, 4) = 200
ReDim Preserve A(1 To 3, 1 To 5) As Integer
A(1, 1) = 300
A(3, 5) = 400
MsgBox "OK"
End Sub
This code creates a two-dimensional array and resizes the second dimension of
the array. The content of the array is copied to the resized array ("preserve"
keyword).
I'll attach the executable. It needs MSVBVM60.DLL. Download it here:
http://www.microsoft.com/downloads/details.aspx?FamilyID=7b9ba261-7a9c-43e7…
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4098
hallo(a)michael-kaufmann.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Summary|Visual Basic 6 sp6 runtime |Visual Basic 6 sp6 runtime
|installer vbrun60sp6.exe |installer: No progress
|doesn't work |window shown (SETUPAPI)
------- Additional Comments From hallo(a)michael-kaufmann.ch 2006-10-05 14:19 -------
The runtime installer works, but it doesn't show the "copying files" window. The
bug is probably in Wine's setupapi.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=4142
hallo(a)michael-kaufmann.ch changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |WORKSFORME
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5216
Summary: Rhapsody Plugin in Firefox 1.5 cannot connect to its
server, but works with native WININET
Product: Wine
Version: 0.9.12.
Platform: PC
URL: http://www.rhapsody.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-net
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jathey(a)comcast.net
On Linux, the Rhapsody plugin for Firefox only works on Firefox 1.0.x, not on
1.5.x. However, the plugin does work in Firefox 1.5.x on Windows, so I
downloaded and installed Firefox 1.5.2 in Wine.
With stock Wine 0.9.12, after I enter my username and password, the login fails
with invalid user name or password. At the same time, the following messages
appear on the console:
fixme:wininet:InternetSetOptionW Option INTERNET_OPTION_CONNECT_TIMEOUT (30000):
STUB
fixme:wininet:INET_QueryOptionHelper Stub! 2
fixme:wininet:InternetSetOptionW INTERNET_OPTION_SEND/RECEIVE_TIMEOUT not
supported on protocol 4
fixme:wininet:INET_QueryOptionHelper Stub! 6
If I start Firefox with WINEDLLOVERRIDES="wininet=n" and WININET.DLL from
Windows 2000 (version 6.00.2800.1485), Rhapsody works great. In fact, I'm
listening to music from Rhapsody right now using this workaround.
This bug strongly resembles http://bugs.winehq.org/show_bug.cgi?id=4992.
Anyone can test this, since Rhapsody offers a free membership where you are
given a few free song plays.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3777
------- Additional Comments From m.goemmel(a)compulab.de 2006-10-05 04:17 -------
Eric mailed me this some time ago, so I post it here before it gets totally
lost:
the normal way of working is:
- the client references an object in the server (thru a windows-socket, which
is in fact a server handle)
- the server in its object references the unix-socket (fd)
however, some wait operations are done in the client by:
- retrieving from the server the unix-fd
- waiting on that unix-fd
what happens in your case is:
- server has a unix-fd opened on the socket
- client get one copy of the unix-fd (to wait on)
- client blocks on it (select)
- another thread (client) closes the windows-socket
- another thread closes the handle (from socket)
- server is called, and object is destroyed in server, hence closing the unix-
fd (from server)
at this point,
- the windows object in server for the socket is destroyed
- but the unix object (in unix kernel) is not destroyed as there's still a
reference to it (thru a unix-fd) (the one used in the select)
Thanks
Markus
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5214
Summary: Errors in SPSS output
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthai(a)owca.info
Here is the result of running frequencies anylsis:
http://wiki.cybersoc.info/doku.php/spss#running_frequencies_analysis
You can note that in wine-SPSS output is missing title “Frequencies” (instead
there is too much blank space) and SPSS reports some “SAX Basic” 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=5206
------- Additional Comments From matthai(a)owca.info 2006-10-05 02:28 -------
Reinstallation of SPSS was not successfull, i had to do:
mv .wine .wine_old
and then install of SPSS.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5206
------- Additional Comments From matthai(a)owca.info 2006-10-05 02:13 -------
BTW: I rebooted the machine and the error is still here. Once the error
disappeared after some time (I was able to run SPSS again), but now it is not
possible.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5206
------- Additional Comments From matthai(a)owca.info 2006-10-05 01:06 -------
ps auxw | grep spss
No spss running. I Also tried "SPSS"
---
cd ~/.wine/drive_c/Program\ Files/SPSS
wine spsswin.exe
The same.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5210
jeremielapuree(a)yahoo.fr changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From jeremielapuree(a)yahoo.fr 2006-10-05 00:28 -------
With the cvs version dated of Mai 10 06H30 (Paris time) and a fresh install, all
seem good.
I don't know what happened.
Hence, one can close this bug as FIXED.
I think I had "kernel32=built-in" (the default setting I mean) and
kernel=windows 2000
Anyway, thank you for the given answers.
Joaopa
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5210
------- Additional Comments From mike(a)codeweavers.com 2006-09-05 20:04 -------
I guess you have kernel32 from windows 2000 present on your system, and kernel32
= native in DllOverrides? If so, this is a configuration error, not a 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=5213
Summary: Visual Pinball 0.6.2806 crashes when attempting to run a
Visual Pinball Table file
Product: Wine
Version: 20050930
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: bumm13(a)yahoo.com
Visual Pinball 0.6.2806 crashes when attempting to run a Visual Pinball Table (.
vpt) file. Visual Pinball table files use Visual Basic Scripting. The main
program graphical editor loads fine, but if you try to load a table, both the
program and Wine crash. The first error text contains "First chance exception:
page fault on read access to 0x474f4c00 in 32-bit code (0x00407611)." Wine also
returns error messages regarding both a register dump and stack dump.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4235
------- Additional Comments From mjung(a)iss.tu-darmstadt.de 2006-09-05 15:40 -------
Patch is now in CVS. Please retry with 0.9.13. Ronny, the assertion failure is
in fact in the function I've patched, but the assert macro is not in line
2521. Did you use my patch or did you modify the file by hand? Unfortunately,
I don't have a Word 97 at hand currently, and thus can't verify.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4849
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From Speeddymon(a)gmail.com 2006-09-05 14:13 -------
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=4849
Speeddymon(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From Speeddymon(a)gmail.com 2006-09-05 14:12 -------
Done
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4849
------- Additional Comments From jbdubbs(a)gmail.com 2006-09-05 13:51 -------
is it possible to close this bug? Been resolved for quite some time.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5210
------- Additional Comments From Speeddymon(a)gmail.com 2006-09-05 13:41 -------
It is calling wineprefixcreate at least..
Try doing make distclean in the wine build dir and then build wine, and report
back if it still fails.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5210
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-09-05 13:34 -------
that's very very odd;
>From ntdll.spec: @ stdcall NtGetTickCount().
In dlls/ntdll/time.c is the implementation. You don't happen to run with a
native ntdll 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=5211
Summary: Skype 2.5.72 Beta Menus are not functional using WinME
or lesser mode
Product: Wine
Version: 0.9.12.
Platform: PC
URL: http://www.skype.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jbdubbs(a)gmail.com
As the title says, when putting Wine into Win98 or lesser mode (which is
required to make a call using the newer clients due to video support crashes),
the menus are non-functional. Clicking them depresses the widget, however a
menu does not pop up.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5210
Summary: wine crashes everytime
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
With the wine cvs version dated of today, I have the following:
[david@Goss ~]$ rm -fR /home/david/.wine/
[david@Goss ~]$ winecfg
wine: creating configuration directory '/home/david/.wine'...
wine: Call from 0x7ff955c0 to unimplemented function ntdll.dll.NtGetTickCount,
aborting
wine: Unimplemented function ntdll.dll.NtGetTickCount called at address
0x7ff955c0 (thread 0009), starting debugger...
wine: Call from 0x7ff955c0 to unimplemented function ntdll.dll.NtGetTickCount,
aborting
err:seh:raise_exception Unhandled exception code 80000100 flags 1 addr 0x7ff955c0
wine: wineprefixcreate failed while creating '/home/david/.wine'.
[david@Goss ~]$ wineserver: could not save registry branch to
/home/david/.wine-igaVsP/system.reg : No such file or directory
wineserver: could not save registry branch to /home/david/.wine-igaVsP/user.reg
: No such file or directory
Trying wine app.exe gives the same result
It is odd.....
Joaopa
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5203
------- Additional Comments From jbdubbs(a)gmail.com 2006-09-05 13:18 -------
Sorry about that backtrace Vitaliy, I just noticed the comment up top. I think
I may have created a duplicate bug with
http://bugs.winehq.org/show_bug.cgi?id=4524
for Skype 2.0 production release. It appears this client just enables video
support when a call is placed instead of right when it starts. It doesn't
matter if you disable video support in your Preferences or not. I think just
probing for it causes this error. As the other bug, this can be fixed by using
Win98 or lesser mode, however in this client, this causes the menus to cease
working, which I'll post another bug on.
I'll recompile Wine with debug information and post 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=5209
Summary: regression: bigjiginstaller fails
Product: Wine
Version: CVS
Platform: PC
URL: http://www.lenagames.com/bigjig80.exe
OS/Version: Linux
Status: UNCONFIRMED
Keywords: regression, download
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: xerox_xerox2000(a)yahoo.co.uk
Yet another installer that fails with current cvs. This application was reported
on wine-users list. As this one behaves different from other installer
regressions i guess it's not a duplicate. Behaviour: it just doesn't do anything
and returns to the prompt.No output at all. Works fine in wine-0.9.10
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5206
------- Additional Comments From marcus(a)jet.franken.de 2006-09-05 12:28 -------
check with "ps auxw" for still running spss.exe processes
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5207
------- Additional Comments From marcus(a)jet.franken.de 2006-09-05 12:14 -------
MODULE=mciwave in Makefile.in must be MODULE=mciwave.dll
i mailed a patch 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=5207
------- Additional Comments From philcostin(a)hotmail.com 2006-09-05 12:12 -------
David Lichterman has created a patch to address this 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=5208
Summary: Firefox aborts with BadMatch / X_GLXMakeCurrent
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: NEW
Keywords: download
Severity: normal
Priority: P2
Component: wine-x11driver
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: dank(a)kegel.com
Running Windows Firefox 1.5.0.3 today, it aborted with
fixme:win:EnumDisplayDevicesW ((null),0,0x7fb84774,0x00000000), stub!
fixme:win:EnumDisplayDevicesW ((null),1,0x7fb84774,0x00000000), stub!
fixme:ddraw:Main_DirectDraw_SetCooperativeLevel (0x77f3c608)->((nil),00001008)
X Error of failed request: BadMatch (invalid parameter attributes)
Major opcode of failed request: 142 (GLX)
Minor opcode of failed request: 5 (X_GLXMakeCurrent)
Serial number of failed request: 2088242
Current serial number in output stream: 2088242
There is no shortage of bugzilla entries with this particular BadMatch -- e.g.
bugs 4016, 4143, 4216, 4539, 4945, 5077 -- but there may be a couple of different
causes, so I'm filing this as a separate bug report for now. I just set
+synchronous
and will get a stack dump if I can.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5207
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From marcus(a)jet.franken.de 2006-09-05 11:33 -------
the directories moved (mciwave.drv -> mciwave.dll I think)
You need to run
make distclean
and rerun configure.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5207
------- Additional Comments From Speeddymon(a)gmail.com 2006-09-05 11:18 -------
That's the problem, mciwave did not get compiled when you ran make from the
wine dir. Go back to the wine/dlls/mciwave dir and run make. Then try to
install from the wine dir and let me know what happens.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5207
------- Additional Comments From Speeddymon(a)gmail.com 2006-09-05 11:09 -------
cd to wine/dlls/mciwave and attach (do not paste) the output of an ls -l
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5207
Summary: CVS 20060509 does not install
Product: Wine
Version: CVS
Platform: PC-x86-64
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b.buschinski(a)web.de
CVS 20060509 does not install (make install)
make[2]: Entering directory
`/var/tmp/portage/wine-9999/work/wine/dlls/mciwave'
../../tools/winegcc/winegcc -B../../tools/winebuild -shared ./mciwave.spec
mciwave.o -Wl,--rpath,
\$ORIGIN/`../../tools/relpath /usr/lib32/wine /usr/lib32` -o
mciwave.so -L../../dlls -lwinmm -luser32 -lkernel32 -L../../libs -lwine -L../../libs/port -lwine_port
../../tools/mkinstalldirs -m
755 /var/tmp/portage/wine-9999/image//usr/lib32/wine
/bin/install -c
mciwave.so /var/tmp/portage/wine-9999/image//usr/lib32/wine/mciwave.so
/bin/install: cannot stat `mciwave.so': No such file or directory
make[2]: *** [install_lib] Error 1
make[2]: Leaving directory
`/var/tmp/portage/wine-9999/work/wine/dlls/mciwave'
make[1]: *** [mciwave/__install-lib__] Error 2
make[1]: Leaving directory `/var/tmp/portage/wine-9999/work/wine/dlls'
make: *** [dlls/__install-lib__] Error 2
but it compiles fine
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4408
------- Additional Comments From Peter.Bienstman(a)UGent.be 2006-09-05 10:18 -------
Has this patch been committed to the tree meanwhile?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5206
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |major
------- Additional Comments From vitaliy(a)kievinfo.com 2006-09-05 08:04 -------
How about:
cd ~/.wine/drive_c/Program\ Files/SPSS
wine spsswin.exe
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5206
------- Additional Comments From matthai(a)owca.info 2006-09-05 04:29 -------
$ wineserver -k
$ wine .wine/drive_c/Program\ Files/SPSS/spsswin.exe
And the same as before. "wineserver -k" does not 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=5206
------- Additional Comments From mike(a)codeweavers.com 2006-09-05 04:15 -------
It's likely you have to kill the old SPSS process. Try "wineserver -k".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5206
Summary: After crash, SPSS do not start at all
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthai(a)owca.info
I runned SPSS and do some testing. Then SPSS crashed. After several crashes,
SPSS cannot be started again:
$ wine .wine/drive_c/Program\ Files/SPSS/spsswin.exe
I receive NO OUTPUT AT ALL (in console or graphical). After some time SPSS can
be normallly runned. However, it seems that wine is working:
$ wine
Usage: wine PROGRAM [ARGUMENTS...] Run the specified program
wine --help Display this help and exit
wine --version Output version information and exit
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5205
Summary: SPSS 10.0 crashes when user switch to Variable view
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthai(a)owca.info
Running SPSS 10.0, opening file and clicking to "Variable view" tab: SPSS crashes
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1226
------- Additional Comments From dank(a)kegel.com 2006-09-05 01:35 -------
With wine built from cvs, this has been happening
a lot. I just got it to happen four times in a row
by going to news.com and picking the Google Calendar review.
'Course, now it isn't happening. Probably some flash ad rotated out of the way.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3124
------- Additional Comments From jmdavisProg(a)gmail.com 2006-09-05 00:46 -------
Just so you know, I had a look at what the SUSE folks are doing about HAL and
it seems that they are aware of the issues that they having with it -
including the fact that it causes problems for wine. They've been doing some
changes to how HAL works in SUSE and it appears that they haven't got them all
sorted out yet. Either way, as far as SUSE users are concerned this problem
will likely be resolved soon.
Thanks for the info on HAL. I'd never even heard of it. You learn something
new every day.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3124
------- Additional Comments From pgr(a)arcelectronicsinc.com 2006-09-05 00:43 -------
I am using the latest git and getting a configure warning about hal.
from ./configure
Package hal was not found in the pkg-config search path.
Perhaps you should add the directory containing `hal.pc'
to the PKG_CONFIG_PATH environment variable
No package 'hal' found
Package hal was not found in the pkg-config search path.
Perhaps you should add the directory containing `hal.pc'
to the PKG_CONFIG_PATH environment variable
No package 'hal' found
The hal rpm's don't have a file name hal.pc and are based on
My HAL is 0.4.8 a May 2005 release.
What is the minimum required version of HAL?
If things go the way the fontforge change over went it could break things. Some
distributions don't seem to have a new enough hal with devlopment libs
available. So if wine 0.9.13 requires HAL to run and build it will cause
problems. But it seems mandriva 2006 does not remap CD mount points like the
newer distros that casuse some 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=5142
neftune(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |mike(a)codeweavers.com
------- Additional Comments From neftune(a)gmail.com 2006-08-05 23:53 -------
I tracked down the commit using git bisect. This commit causes msiexec to print
the usage options instead of continuing the install:
16ee9aba887dd1acfab84c9c7fda4d4ba08cedcc is first bad commit
diff-tree 16ee9aba887dd1acfab84c9c7fda4d4ba08cedcc (from
a8494aa9a904f58ecf1b67b9c51986f8f4cdbd0d)
Author: Mike McCormack <mike(a)codeweavers.com>
Date: Wed Apr 26 00:57:55 2006 +0900
msiexec: Force using /i file.msi, some programs pass properties without an =.
:040000 040000 f32750a72a0aefa9afbb2a59c6f48cb37de63ca2
9cc801320f26fd33263259f40a2c4ca4ef8f82f7 M programs
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5145
------- Additional Comments From qingdao33122(a)yahoo.com 2006-08-05 23:37 -------
Now run regedit and look for the key
HKEY_CLASSES_ROOT\Microsoft.XMLDOM\CLSID
there should be a (Default) entry in the right pane with the value
{2933BF90-7B36-11d2-B20E-00C04F983E60}
Then look further for the key
HKEY_CLASSES_ROOT\CLSID\{2933BF90-7B36-11d2-B20E-00C04F983E60}
What do you see in there?
Your log clearly indicates a problem with those settings.
Although fixing them dosen't neccessarily make your game run properly.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3124
------- Additional Comments From vitaliy(a)kievinfo.com 2006-08-05 22:23 -------
I think you missunderstood. wine-0.9.12 does not have support for HAL. It's
currently in source tree only. And will be available with 0.9.13.
If you want to compile Wine from source then you will need lots of development
packages to make Wine use everything it can work with.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3124
------- Additional Comments From pgr(a)arcelectronicsinc.com 2006-08-05 22:17 -------
No development rpm available yet from Mandriva. I would install the latest hal
from source but I am unsure if installing from source on top of an rpm install
is a good idea and if I uninstall hal a lot of things are depending on it. I
did install a later version of fontconf over the rpm bin's by manually copying
them.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5203
------- Additional Comments From vitaliy(a)kievinfo.com 2006-08-05 22:10 -------
Please please PLEASE DO NOT PASTE BACKTRACES!!!
Can we make note about this BIG and RED and FLASHING?
Recompile Wine with debug information (file kernel.dll.so should sat "not
stripped") and _attach_ backtrace.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4949
------- Additional Comments From funmaker_11(a)yahoo.com 2006-08-05 21:56 -------
I just iatalledd it and tried itt. I get the same results as above. Installer
said something about needing winsock2 to 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=5204
Summary: Age of Wonders 1.36 fails to work past menu
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: altkai(a)ml1.net
The game installs and displays the initial menu and introduction fine. On trying
to enter the game proper, the game emits a dialog box with the error "Exception
during MapViewer.ShowScene". Wine emits nothing to the console.
The AppDB entry doesn't mention any native DLLs required.
I have tried both using the "windowed" and "1280x1024" resolutions from within
the game settings - the fullscreen resolution gives a different error message
but froze X so I was unable to record it. Proceeds slightly farther when
selecting "Tutorial" from the main menu.
I assume the same problem would occur in the demo. The only place I found to
download the demo is on Fileplanet (registration unfortunately required):
http://www.fileplanet.com/filelist.aspx?s=62692&v=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=5084
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 14:05 -------
Closing duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5083
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 14:04 -------
Closing duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5076
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 14:03 -------
Closing Duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5069
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 14:03 -------
Closing duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5067
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 14:02 -------
Closing Duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5052
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 14:01 -------
Closing duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5051
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 14:01 -------
Closing duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5047
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 14:00 -------
Closing duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5046
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 13:59 -------
Closing duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5038
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 13:59 -------
Closing duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5030
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 13:57 -------
Closing duplicate-
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5020
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 13:57 -------
Closing duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5005
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 13:56 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5003
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 13:55 -------
Closing duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4988
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 13:47 -------
Closing duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4963
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-08-05 13:47 -------
Closing duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3124
------- Additional Comments From pgr(a)arcelectronicsinc.com 2006-08-05 11:45 -------
I am not sure when the hal checks were added to configure but I have just
noticed that I am getting a configure warning on hal. None of my apps I run seem
to suffer with the error. I am using Mandriva 2006 and have
hal-0.4.8-15.1.20060mdk It along libhal installed. This seems old and I have a
lot of things depending on the hal rpm so uninstalling and upgrading from source
may be a problem. Does a HAL bug need to be opened to track the distros which
don't match up with the configure tests.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3124
------- Additional Comments From vitaliy(a)kievinfo.com 2006-08-05 08:03 -------
The problem you describing is "hal" related. Wine already has support for it and
it will be available in 0.9.13.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5195
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|normal |minor
Priority|P2 |P3
Summary|Tribes Vengeance missing |Tribes Vengeance menu
|RenderState |missing ingame scenes
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3124
------- Additional Comments From jmdavisProg(a)gmail.com 2006-08-05 04:24 -------
I just had this problem, but I think that I've figured out what they problem
is,generically speaking. Look at the D drive winecfg and I suspect that you'll
find it is not set to anything that actually would be the cdrom, like a cdrom
link or somesuch. On my computer it was set to /media/xmms_audio_cd. That
certainly isn't where the Framemaker CD is.
By setting the D drive to /media/ADOBE_FRAMEMAKER, I was able to install
Framemaker without a hitch. Now, this isn't a great solution because it means
that you have to change the D drive's target every time that you want to run a
different CD in wine, but it WILL work as far as I can tell. Certainly it
worked for me.
Incidently, when I tried to install Framemaker under SUSE 10.0, there was no
problem, but I updatedto SUSE 10.1 the other day and when I attempted to
install Framemaker this time, I got the error described in this bug report.
I think that in SUSE 10.0 there were cdrom and dvdram folders or links in the
media directory which wine could direct itself towards. I'd verify that, but
I'm running SUSE 10.1 now. In 10.1, there does not appear to be any such links
or folders. As always, there are links to the appropriate block devices
in /dev, but I can't target them in winecfg, so I don't know how you'd get
wine to be able to see them.
In the end, I'm not sure whether there is anything that wine can do to fix the
problem, since it appears to me to be a problem outside of its control. I
don't know which distribution that you're using, but I'd guess that it has the
same problem that SUSE 10.1 appears to have where there's no folder or link
in /media for wine to target as the cdrom that will not change when you change
cd's.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4935
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |fenix(a)club-internet.fr
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-08-05 03:14 -------
added author of patch
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1001
------- Additional Comments From petri.kivimaki(a)hut.fi 2006-08-05 02:36 -------
I think it's include/ntstatus.h where they should be defined, I just don't know
the values they should get. I don't know if this was obvious but I hope it helps
someone.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5194
------- Additional Comments From mike(a)codeweavers.com 2006-08-05 02:30 -------
You need to provide a download link for the application.
If you're going to post a backtrace, make sure that you don't use a stripped
Wine build, then add it using "Create a New Attachment" instead of pasting it in
the "Comment" box.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5194
------- Additional Comments From renex(a)263.net 2006-08-05 01:20 -------
app is sh_hall (a kind of online poker game client in chinese)
wine:0.9.12
os:kubuntu dapper beta2
the app need to open a sub window to start a game,but it failed,no window
appeared,i find above track logs on console.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5195
------- Additional Comments From b.buschinski(a)web.de 2006-08-05 01:09 -------
ok...
The problem ist I cant see any animation as I said there is only a white
area where normal a ingame scene is
and I believe these fixme are related to this
The screenshots shows the big white area
and it is not white under 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=5192
------- Additional Comments From the3dfxdude(a)gmail.com 2006-08-05 00:04 -------
Please try to find out the version number and maybe get a stack trace using winedbg.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5195
------- Additional Comments From vitaliy(a)kievinfo.com 2006-07-05 22:34 -------
Unless you have a problem that directly related to these fixmes don't open a bug
for them.
These fixmes caused by Wine itself durring initialilzation.
Please describe the actual 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=5200
Summary: winecfg audio tab crashes if OSS/ALSA support is not
built in
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-multimedia
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: chizu(a)spicious.com
If wine is built without support for OSS or ALSA, clicking the audio tab in
winecfg crashes winecfg. Building in ALSA and/or OSS resolves the crash.
I tested with 0.9.11 and 0.9.12 on X86 and 0.9.12 on X86-64.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4619
------- Additional Comments From ead1234(a)hotmail.com 2006-07-05 20:10 -------
This isn't a winehq apps database bug. It's a problem with wine-net.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5194
------- Additional Comments From mike(a)codeweavers.com 2006-07-05 19:54 -------
Not enough information! Please explain to us in boring detail how to make the
crash happen (which app, which version of Wine, which configuration, etc).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4935
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|critical |normal
Status|UNCONFIRMED |NEW
Component|wine-binary |wine-directx
Ever Confirmed| |1
Keywords| |regression
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-07-05 17:11 -------
This is a regression. I just tried in wine-0.9.1 and it doesn't crash. With
current cvs i get the same crash as you have. Could you do a regression test
please to find the patch that broke the app? thx The regression took place
between 0.9.1 and 0.9.2(i checked 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=5198
------- Additional Comments From rob(a)codeweavers.com 2006-07-05 17:06 -------
This is caused by Alexandre applying that patch, which was part of a larger
patch. I'm going to resubmit it soon.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5066
------- Additional Comments From winehq(a)aynoa.net 2006-07-05 17:05 -------
Confirmed. Under SuSE 9.3 installing FontForge after compiling wine sources
fonts works fine again.
You can't use precompiled SuSE rpms.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5198
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |rob(a)codeweavers.com
URL|http://www.secondlife.com/ |http://secondlife.com/downlo
| |ads/viewer/Second%20Life%201
| |-9-0-21%20Setup.exe
Status|UNCONFIRMED |NEW
Component|wine-files |wine-kernel
Ever Confirmed| |1
Keywords| |download, regression
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-07-05 16:16 -------
Confirming. Regression is caused by
http://www.winehq.org/pipermail/wine-cvs/2006-May/022525.html
Simply reverting that patch makes the installer run again. Added author of the
patch
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5123
------- Additional Comments From t.artem(a)mailcity.com 2006-07-05 14:45 -------
BTW, this bug affects at least 75% of Windows applications which I run under
wine and for some of them changing the locale doesn't 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=5199
Summary: Call of Duty 2 will not install
Product: Wine
Version: CVS
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-user
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: ead1234(a)hotmail.com
When trying to install Call of Duty 2 from cdrom I get an error stating
insufficient privileges.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5196
------- Additional Comments From b.buschinski(a)web.de 2006-07-05 13:21 -------
hmph....yes
when I try to start the game it tells me that it cant find a video device and
exit
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5196
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-07-05 12:54 -------
does running with native dinput.dll change 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=5193
DaleM(a)MooreWorks.Net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From DaleM(a)MooreWorks.Net 2006-07-05 12:39 -------
This is a duplicate of http://bugs.winehq.org/show_bug.cgi?id=5191.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5196
------- Additional Comments From madewokherd(a)gmail.com 2006-07-05 11:43 -------
This looks like bug 1410.
For now, you might be able to work around it by running the program in Xephyr
(which doesn't seem to allow the clients to move the mouse around and would
prevent wine from centering it). Otherwise, there's probably a hack you could apply.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5196
b.buschinski(a)web.de changed:
What |Removed |Added
----------------------------------------------------------------------------
OS/Version|other |Linux
Platform|Other |PC-x86-64
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5198
Summary: Installer (NSIS?) failing since May 2006, reckons I'm
not 'administrator'.
Product: Wine
Version: CVS
Platform: PC
URL: http://www.secondlife.com/
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: adam(a)gimp.org
The (I think Nullsoft/NSIS) installer used by Second Life has started to fail
since Alexandre's 'return from trip' batch of checkins on about May 5th 2006.
Whereas it worked before, now it quits saying 'You appear to be using a
"limited" account. You must be an "administrator" to install Second Life.'
This is when running Wine as either a user or root.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5197
Summary: Characters don't appear in FFXiBench3 program
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mcitadel(a)gmail.com
While running the benchmark program for FFXI, most of the characters and
monsters don't appear or they appear "warped" such as being one solid color or
missing half their body.
The benchmark program can be downloaded freely from
http://www.playonline.com/ff11us/multimedia/download/bench/index.html.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5196
Summary: Tribes Vengeance unabled to move mouse in menu
Product: Wine
Version: CVS
Platform: Other
URL: http://www.gamershell.com/download_6958.shtml
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b.buschinski(a)web.de
I am unabled to move the mouse
I always jumps back to the middle of the screen
even in virtual desktop
wine CVS 20060507
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5090
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=5195
Summary: Tribes Vengeance missing RenderState
Product: Wine
Version: CVS
Platform: PC-x86-64
URL: http://www.gamershell.com/download_6958.shtml
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-directx-d3d
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: b.buschinski(a)web.de
I am not sure if you can install the demo with wine
I copied the installed game from windows to linux and run it with wine
but there are some RenderState missing so where normal a animation is
in the menu is only a white area
(I cant start a real game because my mouse doesnt move)
fixme:d3d:IWineD3DDeviceImpl_SetRenderState
...
(0x70ee0020)->(WINED3DRS_ADAPTIVETESS_X,0)
(0x70ee0020)->(WINED3DRS_ADAPTIVETESS_Y,0)
(0x70ee0020)->(WINED3DRS_ADAPTIVETESS_Z,1065353216)
(0x70ee0020)->(WINED3DRS_ADAPTIVETESS_W,0)
(0x70ee0020)->(WINED3DRS_ENABLEADAPTIVETESSELLATION,0)
(0x70ee0020)->(WINED3DRS_COLORWRITEENABLE1,15)
(0x70ee0020)->(WINED3DRS_COLORWRITEENABLE2,15)
(0x70ee0020)->(WINED3DRS_COLORWRITEENABLE3,15)
(0x70ee0020)->(WINED3DRS_BLENDFACTOR,-1)
(0x70ee0020)->(WINED3DRS_SRGBWRITEENABLE,0)
(0x70ee0020)->(WINED3DRS_SEPARATEALPHABLENDENABLE,0)
(0x70ee0020)->(WINED3DRS_SRCBLENDALPHA,2)
(0x70ee0020)->(WINED3DRS_DESTBLENDALPHA,1)
(0x70ee0020)->(WINED3DRS_BLENDOPALPHA,1)
(0x70ee0020)->(WINED3DRS_MULTISAMPLEMASK,-1)
(0x70ee0020)->(WINED3DRS_PATCHEDGESTYLE,0)
(0x70ee0020)->(WINED3DRS_PATCHSEGMENTS,1065353216)
(0x70ee0020)->(WINED3DRS_DEBUGMONITORTOKEN,1)
(0x70ee0020)->(WINED3DRS_POSITIONDEGREE,3)
(0x70ee0020)->(WINED3DRS_NORMALDEGREE,1)
(0x70ee0020)->(WINED3DRS_MINTESSELLATIONLEVEL,1065353216)
(0x70ee0020)->(WINED3DRS_MAXTESSELLATIONLEVEL,1065353216)
...
not handled yet
I hope I get all
wine CVS 20060507
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5190
------- Additional Comments From mcitadel(a)gmail.com 2006-07-05 10:57 -------
Created an attachment (id=2405)
--> (http://bugs.winehq.org/attachment.cgi?id=2405&action=view)
Debug output for benchmark 2 program
At the end of installing the benchmark 2 program, I get a page fault error.
When trying to run the program, I keep getting "err:seh:raise_exception
Exception frame is not in stack limits => unable to dispatch exception."
Nothing more shows up and this is with Wine 0.9.10 and Wine 0.9.12.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3962
------- Additional Comments From ze_real_neo(a)yahoo.fr 2006-07-05 10:01 -------
I had a similar problem : I tried to connect to a private server, the server url
was into the file data/sclientinfo.xml packed into a grf archive.
The game said "Disconected from the server" just after the login procedure. I
tried to change the url of the server with the ip adress but this didn't solve
the problem.
I ran ethereal and i saw a packet sent to an invalid adress just after the dns
resolution. This packet contained my RO login and password. The destination ip
of the packet is always 108.105.110.101 (which makes "line" in ASCII !?).
To connect myself to the server I used iptables and redirected my traffic from
108.105.110.101 to the ip adress of the server during the playing time with a
simple shell script and the command :
sudo iptables -t nat -A OUTPUT -d $ORIGINAL -j DNAT --to $REAL
with $ORIGINAL assigned to 108.105.110.101 and $REAL with the real server
adress. This solution can help you until the bug correction.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5193
marcus(a)jet.franken.de changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From marcus(a)jet.franken.de 2006-07-05 09:51 -------
this site is not maintained by us.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5192
------- Additional Comments From simon(a)simonzone.com 2006-07-05 03:50 -------
oh, I'm running the Kubuntu Dapper distribution and using the 0.9.12 package
from Wine itself.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5192
Summary: Diablo 2 fails to start
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-files
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: simon(a)simonzone.com
I installed Diablo 2 from CD and ran it. It asked for CD. I gave it the CD and
then it crashes. Showing in a wine window an error message (some kind of
exception). Running Diablo 2 again (with the CD in the driver) just
immediately crashes it, with the same error message.
I then downloaded the 1.11b patch from Blizzard and ran that. The patch ran
fine and Diablo 2 now runs.
(I did have some trouble with the sound though, but that has already been
reported I believe. It seems to hang with some error message in the console
about a "critical section". I'm now using OSS instead of ALSA as a
workaround).
I couldn't figure out exactly which version is on my CD. The CD is not an
original but a re-released "Best seller series" CD. So it may not in fact be
the original Diablo 2 version. I'll add the (pre-patched) directory listing as
an attachment.
Jesse Allen has suggested that I also attach the D2Debug.txt file. If you need
any more info, I can wipe out my Diablo 2 installation and reinstall the
original version and collect debug messages.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5107
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-07-05 02:34 -------
Sorry, forget that last comment #10. The installer mentioned in comment 10 has
the the same problem as bug 5143, has nothing to do with this one.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5190
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-07-05 02:20 -------
Hi, if it's not too much trouble could you try if you run into the same trouble
with the benchmark from http://downloads.guru3d.com/download.php?det=676#download?
I guess FFXI's benchmark program must be rather similar to the game itsself.So
could you check if you run into same problem? (Annoying thing: the installer
won't work with wine-0.9.12 due to a regression; you have to use wine-0.9.10 to
install 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=5191
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2006-07-05 00:58 -------
That site has nothing to do with WineHQ. Official Wine's wiki is at wiki.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=5190
Summary: Page fault error when attempting to run FFXI
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: critical
Priority: P2
Component: wine-misc
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: mcitadel(a)gmail.com
Attempting to run FFXI will crash with a page fault error.
wine: Unhandled page fault on read access to 0x00000000 at address 0x400cb970
(thread 0009).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5026
linux(a)travisdale.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From linux(a)travisdale.net 2006-06-05 19:37 -------
OK I did the following and I can compile and run wine. Here is what I did.
0. Loaded the new FC5 wine version 0.9.12 rpm
1. Ran the following:
/sbin/sysctl -w kernel.exec-shield=0
Did NOT fix the problem!!
2. I then:
create /usr/X11R6/lib
created /usr/X11R6/lib/modules
created /usr/X11R6/lib/modules/dri
made two symlinks in in
/usr/X11R6/lib/modules/dri/
to files in
/usr/lib/ati-fglrx/modules/dri/
3. This solved the OpenGL issue.
4. I removed the FC5 wine rpm and downloaded the source tar for 0.9.12
5. I had to run the script from the following post:
http://www.winehq.org/pipermail/wine-devel/attachments/20051203/97c7c82a/ld…
6. After running the script wine compiled fine. And ran. I would say this
issue has been resolved. However I would recommend either to the wine comunity
or the fedora comunity that the missing library links needs to be delt with in a
cleaner manner than this.
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=5178
thunderbird8(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Other |PC
------- Additional Comments From thunderbird8(a)gmail.com 2006-06-05 19:33 -------
Oops. Forgot to put which platform it was actually on.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4073
------- Additional Comments From dank(a)kegel.com 2006-06-05 17:24 -------
Still happening with cvs (post 0.9.12), although it now says "type 26" instead
of "VT_PTR".
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3636
------- Additional Comments From dank(a)kegel.com 2006-06-05 16:46 -------
Current cvs seems to install mdac. I bet wine-0.9.13 will fix 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=3460
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
------- Additional Comments From dank(a)kegel.com 2006-06-05 16:41 -------
That URL doesn't seem to work any more, but "ChemOffice Viewer 2006" is at
http://scistore.cambridgesoft.com/software/product.cfm?pid=4014
Installation fails with about the same log as Louis posted.
This was with wine from cvs, roughly 0.9.12 and a half.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5189
anderson(a)sonic2000.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5140
mcitadel(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |FIXED
------- Additional Comments From mcitadel(a)gmail.com 2006-06-05 13:23 -------
An reinstall of FFXI fixed this 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=5189
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-05 13:04 -------
Of course it didn't help. * override doesn't work anymore. rm -rf ~/.wine dir
and re-try.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5189
anderson(a)sonic2000.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Attachment #2399 is|0 |1
obsolete| |
------- Additional Comments From anderson(a)sonic2000.org 2006-06-05 12:48 -------
Created an attachment (id=2400)
--> (http://bugs.winehq.org/attachment.cgi?id=2400&action=view)
Crash log 2 (Wine 0.9.12)
Second crash log after adding DllOverrides
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5189
------- Additional Comments From anderson(a)sonic2000.org 2006-06-05 12:47 -------
Made a regedit change for Skype.exe to
[HKCU/Software/Wine/AppDefaults/Skype.exe/DllOverrides]
* = builtin, native
But this did not help at all.
Debug output attatched
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5189
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-05 12:33 -------
Now try this without any native dlls (most notably ole32).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5188
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Component|website-bugs |wine-binary
Product|WineHQ Apps Database |Wine
Resolution| |INVALID
------- Additional Comments From vitaliy(a)kievinfo.com 2006-06-05 12:31 -------
There are no such object on win2k. So something didn't register somehting...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5189
anderson(a)sonic2000.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Platform|Other |PC
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5189
Summary: Skype 2.5 Beta crashes
Product: Wine
Version: 0.9.12.
Platform: Other
URL: http://appdb.winehq.org/appview.php?appId=1592
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: anderson(a)sonic2000.org
When running Skype in Wine 0.9.12 it crashes on startup (error attatched)
Wine 0.9.10 worked, but did not work with the menus. Menus could not be expanded.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5188
Summary: err:ole:CoGetClassObject class {4955dd33-b159-11d0-8fcf-
00aa006bcc59} not registered
Product: WineHQ Apps Database
Version: unspecified
Platform: Other
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P3
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: nittek(a)gmail.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=5145
------- Additional Comments From realill(a)gmail.com 2006-06-05 10:14 -------
Ok, I installed msxml3 and got the same result with
WINEDLLOVERRIDES=msvcrt,msxml3=n wine etherlords2.exe
Still, I do not think this application uses msxml3 at all.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5187
Summary: MSI crash in Rush for Berlin demo
Product: Wine
Version: CVS
Platform: Other
URL: http://www.gamershell.com/download_13590.shtml
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-msi
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: jeremielapuree(a)yahoo.fr
Trying to install Rush for Berlin demo makes wine to crash with several msi
errors. I will attach a trace log
Joaopa
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5186
polzer(a)gnu.org changed:
What |Removed |Added
----------------------------------------------------------------------------
Summary|int21/440d not implemented |int21/440d/ not implemented
------- Additional Comments From polzer(a)gnu.org 2006-06-05 03:31 -------
Sorry, I thought "blocker" was to indicate that it blocks application use.
D: is mapped from a UNIX directory.
My only mapped CD-ROM is mapped to O:.
This program cannot be run in Dosbox because it is a win32 application.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1129
------- Additional Comments From neftune(a)gmail.com 2006-06-05 03:25 -------
Is this bug that white rectangles are shown wherever one bitmap is supposed to
be displayed on top of another, such as wherever a character walks? If so it
still exists in 0.9.12 and current wine git commit
4d7946464a104f49b12e059fbafbe56c843484cb
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1226
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
CC| |dank(a)kegel.com
------- Additional Comments From dank(a)kegel.com 2006-05-05 23:17 -------
I'm running Firefox 1.5.0.3 on Mike McCormack's git version (roughly 0.9.12 and
a half),
and it crashed tonight. The stack was deep and unusable;
the only clue to what happened in the log is
fixme:winsock:NtStatusToWSAError Status code c0000024 converted to DOS error code 6
fixme:winsock:NtStatusToWSAError Status code c0000024 converted to DOS error code 6
wine: Unhandled page fault on read access to 0x300c6e53 at address 0x300c6e53
(thread 0031),
Seems like another instance of bug 1226...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5104
dank(a)kegel.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
------- Additional Comments From dank(a)kegel.com 2006-05-05 23:13 -------
He fixed his error, things are a lot better now.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5186
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|blocker |normal
------- Additional Comments From vitaliy(a)kievinfo.com 2006-05-05 20:50 -------
This is not a blocker - it doesn't stop anyone else from developing/testing.
Wine was never able to run complicated DOS programs. And probably never will.
Why duplicate effort of something like dosbox?
Also please specify all the information above.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5186
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-05-05 16:54 -------
Can you say, please, what type your D: drive is? Is this filesystem on CD-ROM
or HD partition?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4533
------- Additional Comments From neftune(a)gmail.com 2006-05-05 16:31 -------
I don't think this is caused by missing MoveFiles action. I think something is
wrong with .cab handling. I ran strace and it shows that no file named
accessor.cab is ever created anywhere. Then when Wine tries to extract accessor.cab:
[pid 30790]
stat64("/home/nauser/.wine/dosdevices/c:/windows/temp/RarSFX0/accessor.cab",
<unfinished ...>
[pid 30790]
stat64("/home/nauser/.wine/dosdevices/c:/windows/temp/RarSFX0/accessor.cab",
0x7fad8300) = -1 ENOENT (No such file or directory)
These are the only mention of accessor.cab from strace
--
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=4938
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:55 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4933
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:55 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4930
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:54 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4909
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:54 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4899
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:53 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4881
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:52 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4876
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:52 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4862
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:51 -------
Closing Duplicate
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4859
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:50 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4835
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|RESOLVED |CLOSED
------- Additional Comments From tony.lambregts(a)gmail.com 2006-05-05 15:49 -------
Closing Duplicate.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5186
Summary: int21/440d not implemented
Product: Wine
Version: unspecified
Platform: All
OS/Version: All
Status: UNCONFIRMED
Severity: blocker
Priority: P2
Component: wine-dos
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: polzer(a)gnu.org
err:int21:INT21_Ioctl_Block int21: unknown/not implemented parameters:
int21: AX 440d, BX 0004, CX 0848, DX fbac, SI 0001, DI 0001, DS 0000, ES 0000
This prevents a game from starting.
According to Ralph Brown's Interrupt List, this should do: (see attachment)
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5185
vitaliy(a)kievinfo.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |normal
------- Additional Comments From vitaliy(a)kievinfo.com 2006-05-05 09:24 -------
So what is the problem(s)? I don't see anything informative in that log. Except
that CreateIoCompletionPort is not implemented. Which is probably the cause of
the program not working (if it doesn't 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=5183
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|major |normal
Status|UNCONFIRMED |NEW
Component|wine-binary |wine-ole
Ever Confirmed| |1
Keywords| |download
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-05-05 09:15 -------
Confirming. Another ole bug. Using native oleaut32 _and_ ole32 the game starts
fine. the type mismatch is probably a duplicate of
http://bugs.winehq.org/show_bug.cgi?id=4463#c1
Using only native oleaut32 the program just hangs, so there's another bug as well.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5181
------- Additional Comments From dank(a)kegel.com 2006-05-05 09:10 -------
Adding keywords vb6 and Visual Basic 6 to make this bug easier to find.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5180
------- Additional Comments From dank(a)kegel.com 2006-05-05 09:09 -------
Adding keywords Visual Basic 6 to make this bug easier to search for.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=2934
------- Additional Comments From dank(a)kegel.com 2006-05-05 09:06 -------
Adding keywords Visual Basic to make this bug show up in more searches.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5177
xerox_xerox2000(a)yahoo.co.uk changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-gui |wine-ole
Summary|application crashes after |oleaut32:application crashes
|closing OpenFile dialog |after closing OpenFile
| |dialog
------- Additional Comments From xerox_xerox2000(a)yahoo.co.uk 2006-05-05 08:49 -------
works fine with native oleaut32, changed component
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1631
------- Additional Comments From gerald.britton(a)gmail.com 2006-05-05 08:06 -------
No buffer over(under)runs, but garbled sound persists with Riven on 0.9.12
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5066
------- Additional Comments From gerald.britton(a)gmail.com 2006-05-05 08:05 -------
After upgrading fontforge, I recompiled 0.9.12 and fonts magically reappeared!
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5185
matthai(a)owca.info changed:
What |Removed |Added
----------------------------------------------------------------------------
Severity|minor |major
Platform|Other |PC
Summary|Errors in console when SPSS |wine SPSS 10.0 errors
|10.0 is running |
------- Additional Comments From matthai(a)owca.info 2006-05-05 06:32 -------
I runned SPSS 10.0, open datafile and run frequencies analysis. The errors from
the console are attached.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5185
Summary: Errors in console when SPSS 10.0 is running
Product: Wine
Version: 0.9.12.
Platform: Other
OS/Version: Linux
Status: UNCONFIRMED
Severity: minor
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthai(a)owca.info
In the attachment is a listing from console. The listing is a result of just
running the SPSS. SPSS offers you a dialog to open a file, I press cancel and
then exit.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5184
Summary: Installation of SPSS 10 problems
Product: Wine
Version: 0.9.12.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: matthai(a)owca.info
spss_install/SPSS_10.0/SPSS$ wine setup.exe
I got these errors:
fixme:font:WineEngRemoveFontResourceEx :stub
fixme:ole:MSFT_ReadValue BSTR length = -1?
fixme:ole:ITypeInfo_fnRelease destroy child objects
fixme:ole:SLTG_ProcessDispatch memh.cbExtra is 1912
fixme:ole:SLTG_ProcessDispatch offset 0 0x4a
fixme:ole:SLTG_ProcessDispatch memh.cbExtra is 488
fixme:ole:SLTG_ProcessDispatch offset 0 0x4a
fixme:ole:MSFT_ReadValue BSTR length = -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=4969
------- Additional Comments From wolfgang.amadeus(a)libero.it 2006-05-05 05:40 -------
That's not a bug. When you start IDA and you get the 1st dialog "information"
which displays the message: "keyboard layout error...", switch the keyboard to
ENGLISH setup (Alt+Shift), then click on OK button and go on.
Bye
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5183
Summary: Run-time error "13": Type mismatch
Product: Wine
Version: 0.9.12.
Platform: Other
URL: http://www.texascalculatem.com
OS/Version: Linux
Status: UNCONFIRMED
Severity: major
Priority: P2
Component: wine-binary
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: alan.rae(a)blueyonder.co.uk
While running TexasCalculatem, a box appears on program load saying 'Run-time
error "13": Type mismatch'.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=3258
------- Additional Comments From wallenfox(a)gmail.com 2006-05-05 02:48 -------
I can not reproduce this bug at all. I've been opening and closing it over and
over by all different methods and it seems to be shutting down fine. Perhaps it
is/was an issue with an older wine version? I'm testing under 9.12
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1631
------- Additional Comments From tom(a)clift.name 2006-05-05 02:28 -------
Confirmed for many games I've tried with Wine. For some games there may be
periods where it does not occur (typically lasting several seconds). When it
does, error messages similar to what others have posted are printed to the
console, and the game slows down enough to be unplayable. This happens with both
ALSA and aRts, and not at all when sound is disabled.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=5177
tony.lambregts(a)gmail.com changed:
What |Removed |Added
----------------------------------------------------------------------------
URL| |http://www.logicacmg.com/pSe
| |cured/admin/countries/assets
| |/serve_asset.asp?id=4380
Status|UNCONFIRMED |NEW
Ever Confirmed| |1
Keywords| |download, NoAppDBEntry
------- Additional Comments From tony.lambregts(a)gmail.com 2006-04-05 20:54 -------
Confirming this.
Please add an entry for this program in the AppDB http://appdb.winehq.org/
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.