http://bugs.winehq.org/show_bug.cgi?id=4885
mike(a)codeweavers.com changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|UNCONFIRMED |RESOLVED
Resolution| |INVALID
------- Additional Comments From mike(a)codeweavers.com 2006-21-03 10:42 -------
We support standard compile using ./configure on a wine tarball or CVS/git
checkout. Your problem looks gentoo specific, so I suggest you report it to a
gentoo forum.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4885
------- Additional Comments From vnishimoto(a)bol.com.br 2006-21-03 10:38 -------
Same error, same system, but, started with 2006-03-17 for me. Until 2006-03-16
is ok.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=1631
------- Additional Comments From gerald.britton(a)gmail.com 2006-21-03 10:27 -------
tested Riven again with 09.10 release. buffer underruns are gone but sound
still garbled. Actually it sounds like the sound is clipped -- as if too high a
signal is being sent to a preamp in an audio setup.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4904
Summary: Critical error when trying to start warcraft 3
Product: WineHQ Apps Database
Version: unspecified
Platform: PC
OS/Version: other
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: website-bugs
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: selene_pisa(a)yahoo.it
When I try to make Warcraft 3 work it gives me this message:
This application has encountered a critical error:
FATAL ERROR!
Program: c:\Program Files\Warcraft III\War3.exe
Exception: 0xC0000005 (ACCESS_VIOLATION) at 0073:00000FD100000FD1
The instruction at '00000FD1' referenced memory at '00000FD1'
The memory could not be 'read'
Press OK to terminate the application
I am a dummie I must say, but if you help me in a SIMPLE way I will throw my
windows away and convert entirely to Linux
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4888
willie(a)froq.net changed:
What |Removed |Added
----------------------------------------------------------------------------
Component|wine-multimedia |wine-x11driver
------- Additional Comments From willie(a)froq.net 2006-21-03 09:26 -------
Changed the component to reflect my recent findings...
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4901
------- Additional Comments From Speeddymon(a)gmail.com 2006-21-03 06:34 -------
This looks to be a crash in libasound. Can you try the patches that are on Bug
4051, and let us know if any of them prevent the crash you are experiencing?
That's just to make sure it isn't an arts crash.
If the crash still occurs, please let us know.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4664
------- Additional Comments From wijn(a)wanadoo.nl 2006-21-03 05:53 -------
The heap error might be significant, but it is also possible not a Wine bug.
I have the program installed, can you give me instructions how to reproduce
these errors?
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4898
------- Additional Comments From saulius.krasuckas(a)elst.vtu.lt 2006-21-03 01:51 -------
| And it was never possible to run GUI apps - only console apps.
Invisible OLE windows are not for GUI here. ;-)
| There are way too much to emulate for no apparent benefit.
Yes, and this doesn't imply the need of WONTFIX (it may be fixed in distant
future, as you say).
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.
http://bugs.winehq.org/show_bug.cgi?id=4903
Summary: Setting breakpoint in form of <module>!<id> doesn't work
Product: Wine
Version: 0.9.10.
Platform: PC
OS/Version: Linux
Status: UNCONFIRMED
Severity: normal
Priority: P2
Component: wine-debug
AssignedTo: wine-bugs(a)winehq.org
ReportedBy: codemachine(a)inbox.ru
Hi,
breakpoint command in winedbg should accept identifier in form <module>!<id>:
"-Identifiers can take a '!' in their names. This allow mainly to access symbols
from different DLLs like USER32!CreateWindowExA." - from Wine Developer's Guide.
But when I enter such expressions winedbg seems to process only part before '!'.
Example:
<in some debugging session>:
Wine-dbg>b advapi32!HeapFree
No symbols found for advapi32
Unable to add breakpoint, will check again when a new DLL is loaded
syntax error
I've tried to investigate this issue and seems that problem somewhere in winedbg
Yacc rules. When I've changed 'identifier' rule in dbg.y
From:
identifier:
tIDENTIFIER { $$ = $1; }
| tPATH '!' tIDENTIFIER { .... }
To
identifier:
tIDENTIFIER { $$ = $1; }
| tIDENTIFIER '!' tIDENTIFIER { ... }
winedbg began to accept such breakpoint commands properly:
Wine-dbg>b advapi32!HeapFree
Many symbols with name 'advapi32!HeapFree', choose the one you want (<cr> to abort):
[1]: 0x7f9baa70 HeapFree in advapi32
[2]: 0x7f9baa70 HeapFree in advapi32
But it still does case-sensitive search through modules and 'ADVAPI32!HeapFree'
doesn't work, but, as far as I've understood from Developer's Guide example,
case-insensitive search is expected.
--
Configure bugmail: http://bugs.winehq.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.