Re: WoW, er Wine on Windows--Re: Still more fun?

2005-04-24 Thread Shachar Shemesh
Mike McCormack wrote: Augustus Saunders wrote: As for what we hope to accomplish, well, it might seem like massive overkill to try using WINE, but it's the only plausible way I've come up with. Basically, we want to substitute all the graphics/windowing/GDI etc so that we can record all the

Re: Some fixes for filtergraph.c

2005-04-24 Thread Christian Costa
Hi Maarten, Maarten Lankhorst wrote: This doesn't fix everything, just theroutines i called.. some other similar functions aren't fixed because filtergraph.c is really THAT leaky..b mostly with reference counts.. Yes, Indeed. :-) Here are some comments :

Re: Copy Protection

2005-04-24 Thread Ivan Leo Puoti
Dustin Navea wrote: Guys, bug 2895 got me thinkin.. If we only support a handful of games that use copy protection, shouldnt we file a bug in Bugzilla and append that to 1434 (Get games working perfectly)? That way we can attach any copy protection related bugs to this metabug? Yes I think

Odd problem with process handles

2005-04-24 Thread Robert Lunnon
I am having a problem with the attached segfault in ie6 I have attached a gdb backtrace and the last part of a relay dump. hModule is 0xe and gets dereferenced to find e_magic presumably from the psp. Obviously dereferencing 0xfffe is not good which raises an exception The

Wine no longer compiles

2005-04-24 Thread Ivan Gyurdiev
Haven't been able to compile cvs wine for the last few weeks. This is Fedora Rawhide with gcc4. Any suggestions? gcc -c -I. -I. -I../../../include -I../../../include -I../../../include/msvcrt -I./.. -D_REENTRANT -fPIC -Wall -pipe -mpreferred-stack-boundary=2 -fno-strict-aliasing -gstabs+

More problems in ie6

2005-04-24 Thread Robert Lunnon
In addition to the bad process handle I get intermittent crashes in IE6 which seems to be due to the creation of more than 8 threads or when a thread is ended (IE it occurs after thread 8 starts, then exits then another thread 8 starts (9th thread creation)) Thread 8 is the first thread that

RE: WoW, er Wine on Windows--Re: Still more fun?

2005-04-24 Thread Rolf Kalbermatter
Augustus Saunders wrote: As for what we hope to accomplish, well, it might seem like massive overkill to try using WINE, but it's the only plausible way I've come up with. Basically, we want to substitute all the graphics/windowing/GDI etc so that we can record all the painting/rendering into

Re: Odd problem with process handles

2005-04-24 Thread Juan Lang
Hi Bob, hModule is 0xe and gets dereferenced to find e_magic presumably from the psp. Could you try the following really quick patch? I have no idea where the -1 value to GetProcAddress comes from, LoadLibraryA returned NULL. I'm also not sure whether the check belongs in here or in

Re: Some fixes for filtergraph.c (#2)

2005-04-24 Thread Christian Costa
This is not correct, you must connect all pins, not just the first that succeeds. Asleep? ;) You can't connect an input pin more then once (VFW_E_ALREADY_CONNECTED), anyway this function always returned S_OK, I fixed that too now... If you still think multiple connects should happen

Re: Odd problem with process handles

2005-04-24 Thread Robert Shearman
Robert Lunnon wrote: I am having a problem with the attached segfault in ie6 I have attached a gdb backtrace and the last part of a relay dump. hModule is 0xe and gets dereferenced to find e_magic presumably from the psp. Obviously dereferencing 0xfffe is not good which raises an

Re: Installing Mozilla

2005-04-24 Thread Uwe Bonnes
Juan == Juan Lang [EMAIL PROTECTED] writes: Juan Alex wrote: I'm encountering a crash when trying to install Mozilla 1.7.7 under wine. I am using a fresh CVS checkout, but I've tried older revisions with the same result. Juan So far, this evidence points to a bug in

Re: Debugging with GDB [was: Re: World of Warcraft - crash in game]

2005-04-24 Thread Alex Woods
On Sun, Apr 24, 2005 at 09:23:22AM +1000, Troy Rollo wrote: On Saturday 23 April 2005 22:12, Alex Woods wrote: I'm attaching to the process with gdb, but it's not catching things at the point where they go wrong. Typically I am just seeing a stack like this though: #0 0x56752a01 in ??

Re: Installing Mozilla

2005-04-24 Thread Juan Lang
--- Uwe Bonnes [EMAIL PROTECTED] wrote: Is the Mozilla Installer Installshield or MSI based? Otherwise is it open source? Perhaps an easier way to backtrace the problem? I believe it's open source. The crash was due to Mozilla attempting to write to a value that's exported by msvcrt.dll. It

Re: Installing Mozilla

2005-04-24 Thread Dustin Navea
I was going to file the bug with mozilla, but I wasnt sure of how to describe it.. sorry..now I know, but dont know how to describe where it is.. would bug in ntmisc.c: _tzname be appropriate? Dustin Juan Lang wrote: --- Uwe Bonnes [EMAIL PROTECTED] wrote: Is the Mozilla Installer

PATCH: gcc4 alias fixes

2005-04-24 Thread Marcus Meissner
Hi, This is the patch I use for gcc4.0 here. I am not really sure why this aliasing was introduced, but it will not work this way anymore. Ciao, Marcus diff -ruN -x CVS wine-20050419/include/msvcrt/conio.h marcus-wine-20050419/include/msvcrt/conio.h --- wine-20050419/include/msvcrt/conio.h

Re: PATCH: gcc4 alias fixes

2005-04-24 Thread Dimitrie O. Paun
On Sun, Apr 24, 2005 at 10:02:47PM +0200, Marcus Meissner wrote: Hi, This is the patch I use for gcc4.0 here. I am not really sure why this aliasing was introduced, but it will not work this way anymore. I still don't understand why it doesn't work. It was introduced because using macros

writejump purpose

2005-04-24 Thread Robert Lunnon
In kthread.c there is this code that is only defined for I386 glibc, but the solaris port uses Solaris libc so the function does nothing. What is the purpose of this function and exactly what should the semantics be ? BOb static inline void writejump( const char *symbol, void *dest ) { #if

Re: Wine no longer compiles

2005-04-24 Thread James Hawkins
On 4/24/05, Ivan Gyurdiev [EMAIL PROTECTED] wrote: Haven't been able to compile cvs wine for the last few weeks. This is Fedora Rawhide with gcc4. Any suggestions? gcc -c -I. -I. -I../../../include -I../../../include -I../../../include/msvcrt -I./.. -D_REENTRANT -fPIC -Wall -pipe

Re: Installing Mozilla

2005-04-24 Thread Dustin Navea
Was it the Mozilla installer that was crashing due to a bug in it's ntmisc.c or the Mozilla app itself that was crashing? Dustin Juan Lang wrote: --- Uwe Bonnes [EMAIL PROTECTED] wrote: Is the Mozilla Installer Installshield or MSI based? Otherwise is it open source? Perhaps an easier way to

Re: writejump purpose

2005-04-24 Thread Marcus Meissner
On Mon, Apr 25, 2005 at 07:59:30AM +1000, Robert Lunnon wrote: In kthread.c there is this code that is only defined for I386 glibc, but the solaris port uses Solaris libc so the function does nothing. What is the purpose of this function and exactly what should the semantics be ? It is