wine and msys rxvt.exe

2007-02-24 Thread Wesley Parish
I installed msys a couple of years back, and decided to test rxvt.exe: bash-3.1$ wine .wine/drive_c/msys/1.0/bin/rxvt.exe libGL warning: 3D driver claims to not support visual 0x4b fixme:netapi32:NetWkstaUserGetInfo Level 1 processing is partially implemented fixme:advapi:LsaOpenPolicy ((null),0x6

Re: Success with enhanced cd's... kind of

2007-02-24 Thread Ben Hodgetts (Enverex)
This isn't an Ubuntu bug, it's a Gnome bug, it's been like this for as far as I remember (years). Ex Dan Kegel wrote: > I noticed that my copy of "No!" by "They Might Be Giants" > is an "enhanced cd", so I inserted it into my Ubuntu Dapper > laptop. Ubuntu only noticed the audio tracks, so I had

Re: a big fan (now with bad news)

2007-02-24 Thread Joris Huizer
Aww... yes, I'm seeing that too According the the wine application database (http://appdb.winehq.org/appview.php?iVersionId=469) some settings help it get a bit further, but it reports: "Microsoft Internet Explorer has encountered a problem and needs to close. We are sorry for the inconvenience

Re: New wintest executable is there (but there are some issues due to introduction of skip)

2007-02-24 Thread Wagner Ferenc
Paul Vriens <[EMAIL PROTECTED]> writes: > It doesn't make use of the skip-count as that will mean fixing up a > lot more. If somebody could have a look at the attached patch? Looks good. The already submitted report files could be moved from the data dir back into the queue on the web server as

Re: dplay: directplay should initialize session Guid patch + conformance tests

2007-02-24 Thread H. Verbeet
On 24/02/07, Stefan Dösinger <[EMAIL PROTECTED]> wrote: Use todo_wine ok(memcmp(&sessionDesc.guidInstance,&zeroGuid,16),"Session guid not initialized"); Afaik the proper way is to use IsEqualGUID() rather than memcmp().

Success with enhanced cd's... kind of

2007-02-24 Thread Dan Kegel
I noticed that my copy of "No!" by "They Might Be Giants" is an "enhanced cd", so I inserted it into my Ubuntu Dapper laptop. Ubuntu only noticed the audio tracks, so I had to actually use the commandline to mount the data tracks: sudo mount -oro,loop -tiso9660 /dev/cdrom /mnt After that it went

RE: xcopy try 2

2007-02-24 Thread Ann & Jason Edmeades
Hi Detlef, (again) >Configure.ac - I included that because another 'regular' developer who >added a dll recently added it (See:) > http://www.winehq.org/pipermail/wine-patches/2007-February/036243.html) >I'll leave it in for that reason unless there's a big problem with it (I >always thought you

RE: xcopy try 2

2007-02-24 Thread Ann & Jason Edmeades
Hi Detlef, Firstly thanks for taking the time to comment on this... Configure.ac - I included that because another 'regular' developer who added a dll recently added it (See:) http://www.winehq.org/pipermail/wine-patches/2007-February/036243.html) I'll leave it in for that reason unless there'

Re: dplay: directplay should initialize session Guid patch + conformance tests

2007-02-24 Thread Paul Vriens
Alessandro Pignotti wrote: On Saturday 24 February 2007 19:31, Stefan Dösinger wrote: todo_wine ok(memcmp(&sessionDesc.guidInstance,&zeroGuid,16),"Session guid not initialized"); For tests which are known to fail This version of the patch follows Stefan's advice. -

configure: Break single-line ac_config_files list into multiple lines.

2007-02-24 Thread Saulius Krasuckas
This long line breaks automated rebasing of one of testing branches on (namely ntoskrnl) on my box every time a new dll or program is added. That's because I need to merge conflict for this line by my hand. And I am not sure what stops us from keeping "ac_config_files" list multiline, so mergi

Re: dbghelp: Match the crc for debug link files in elf_locate_debug_link so that we get the correct debug file before trying to parse it.

2007-02-24 Thread Eric Pouech
Eric Pouech a écrit : Robert Shearman a écrit : Eric Pouech wrote: Robert Shearman a écrit : Keep the debuglink elf_file_map mapped until after elf_new_public_symbols is called, otherwise we could use unmapped memory. this is still not the full valid solution... what should be done is: w

Re: dplay: directplay should initialize session Guid patch + conformance tests

2007-02-24 Thread Stefan Dösinger
Am Samstag 24 Februar 2007 17:25 schrieb Alessandro Pignotti: > Hi everyone, > the directx sdk says that directplay has to initialize sesison guid in > SESSIONDESC2 struct that is passed by the application with the Open call. > This patch adresses that issue and includes proper conformance test. >

Re: [PATCH] user32: do not call NULL message callback

2007-02-24 Thread Felix Nawothnig
Fabian Bieler wrote: The only way I know of to test this behavior would be to pass a NULL pointer as callback. Naturally this results in a segfault without this patch. Is this okay for a testcase? Use if(0) instead of todo_wine then (and let the second patch, which fixes the bug, remove the i

Re: [PATCH] user32: do not call NULL message callback

2007-02-24 Thread Felix Nawothnig
Fabian Bieler wrote: Windows silently ignores NULL pointers supplied to SendMessageCallback as callback function. A testcase would be nice. Felix

Re: [PATCH] user32: do not call NULL message callback

2007-02-24 Thread Fabian Bieler
On Saturday 24 February 2007 17:30, you wrote: > Fabian Bieler wrote: > > Windows silently ignores NULL pointers supplied to SendMessageCallback as > > callback function. > > A testcase would be nice. > > Felix The only way I know of to test this behavior would be to pass a NULL pointer as callbac

Re: New wintest executable is there (but there are some issues due to introduction of skip)

2007-02-24 Thread Felix Nawothnig
And while we're at it, there seems to be some misconfiguration of the httpd (for quite some time), as the following URL generates an 500 Internal Server Error: http://test.winehq.org/data/200702241000/2003_W2K3-SE-IE7/ntdll:error.txt

Re: include/d3d9types.h: Remove Size from D3DVOLUME_DESC

2007-02-24 Thread Stefan Dösinger
Am Samstag 24 Februar 2007 13:27 schrieb H. Verbeet: > On 24/02/07, Rok Mandeljc <[EMAIL PROTECTED]> wrote: > > According to both MSDN and wine's d3d9 sources, Size was removed from > > D3DVOLUME_DESC in DX9. This patch seems to have fixed crash in > > d3dx9_30.dll at NeverWinter Nights 2 startup (

Re: kernel32: Set object security on process object in CreateProcess.

2007-02-24 Thread Vitaliy Margolen
Robert Shearman wrote: > Vitaliy Margolen wrote: >> + >> +/* set process security */ >> +if (ret && psa && psa->lpSecurityDescriptor) >> +{ >> +NTSTATUS status; >> + >> +status = NtSetSecurityObject( info->hProcess, >> DACL_SECURITY_INFORMATION, >> +

Re: New wintest executable is there (but there are some issues due to introduction of skip)

2007-02-24 Thread Paul Vriens
Paul Vriens wrote: Hi, as of today there's a new winetest executable available at the usual place: http://www.astro.gla.ac.uk/users/paulm/WRT/CrossBuilt/ There is however an issue with the generated reports. It looks like this is introduced when the 'skip' thingy was added to the test infras

New wintest executable is there (but there are some issues due to introduction of skip)

2007-02-24 Thread Paul Vriens
Hi, as of today there's a new winetest executable available at the usual place: http://www.astro.gla.ac.uk/users/paulm/WRT/CrossBuilt/ There is however an issue with the generated reports. It looks like this is introduced when the 'skip' thingy was added to the test infrastructure. I'm curren

Re: test.winehq.com status

2007-02-24 Thread Felix Nawothnig
Hi. A new crossbuild appeared today but the site shows all tests failing. See http://test.winehq.org/data/200702241000/ Felix

Re: include/d3d9types.h: Remove Size from D3DVOLUME_DESC

2007-02-24 Thread H. Verbeet
On 24/02/07, Rok Mandeljc <[EMAIL PROTECTED]> wrote: According to both MSDN and wine's d3d9 sources, Size was removed from D3DVOLUME_DESC in DX9. This patch seems to have fixed crash in d3dx9_30.dll at NeverWinter Nights 2 startup (I assume it was due to wrong offset of Width, Height and Depth

Re: configure: Break single-line ac_config_files list into multiple lines.

2007-02-24 Thread Marcus Meissner
On Sat, Feb 24, 2007 at 02:31:25PM +0200, Saulius Krasuckas wrote: > * On Sat, 24 Feb 2007, Marcus Meissner wrote: > > * On Sat, Feb 24, 2007 at 02:15:29PM +0200, Saulius Krasuckas wrote: > > > And I am not sure what stops us from keeping "ac_config_files" list > > > multiline, so merging in futur

Re: ANN: Wiki upgrade

2007-02-24 Thread Saulius Krasuckas
* On Thu, 15 Feb 2007, Dimi Paun wrote: > We finished upgrading the wiki to MoinMoin 1.5.7. > Please let me know if you encounter any problems. I've tried some searching on it, and it reports: Title Search: "ntoskrnl" 0 results out of about 1472 pages. (0.06 seconds) I guess it's searching onl

Re: configure: Break single-line ac_config_files list into multiple lines.

2007-02-24 Thread Saulius Krasuckas
* On Sat, 24 Feb 2007, Marcus Meissner wrote: > * On Sat, Feb 24, 2007 at 02:15:29PM +0200, Saulius Krasuckas wrote: > > And I am not sure what stops us from keeping "ac_config_files" list > > multiline, so merging in future could be automatical. > > The problem is that configure is automatically

Re: configure: Break single-line ac_config_files list into multiple lines.

2007-02-24 Thread Marcus Meissner
On Sat, Feb 24, 2007 at 02:15:29PM +0200, Saulius Krasuckas wrote: > This long line breaks automated rebasing of one of testing branches on > (namely ntoskrnl) on my box every time a new dll or program is added. > That's because I need to merge conflict for this line by my hand. > > And I am no

Re: configure: Break single-line ac_config_files list into multiple lines.

2007-02-24 Thread H. Verbeet
On 24/02/07, Saulius Krasuckas <[EMAIL PROTECTED]> wrote: This long line breaks automated rebasing of one of testing branches on (namely ntoskrnl) on my box every time a new dll or program is added. That's because I need to merge conflict for this line by my hand. And I am not sure what stops us

Re: winex11.drv: Catch and report screen resolution change errors.

2007-02-24 Thread Stefan Dösinger
Am Samstag 24 Februar 2007 07:17 schrieb Vitaliy Margolen: > > winex11.drv: Catch and report screen resolution change errors. > > This patch brakes Half-life based games in virtual desktop. Yes, I saw the same with moto racer 2 yesterday. I will send a patch to re-enable color depth faking for vir

Re: [6/13]D3D: Index buffer fixes

2007-02-24 Thread Mirek
Stefan Dösinger napsal(a): Am Freitag 23 Februar 2007 21:44 schrieb Mirek: Thanks! This patch fixed Oblivion and even Flatout 2! Cool. I wonder why disabling index buffer vbos entirely didn't fix flatout 2 :-O I sense that there will be some more regressions on cards that do not support vbos.

Re: xcopy try 2

2007-02-24 Thread David Laight
On Sat, Feb 24, 2007 at 01:00:06AM +0100, Detlef Riekenberg wrote: > > +C_SRCS = \ > +xcopy.c > > Spaces are wrong before the filename. You must use TAB in makefiles That is a contiuation line, IIRC the whitespace at the start of the continued line should be discarded (and can be space/t