Re: Valgrind results for Oct 9: still lots of hangs

2007-11-09 Thread Dan Kegel
? Or did it run this time? > > > > Results for today's git (plus my dde patch) are online at > > http://kegel.com/wine/valgrind/20071109/ > > > > ole32/tests/marshall.c has always been hanging > > when run under valgrind. In the last two days, > > the

Re: Valgrind results for Oct 9: still lots of hangs

2007-11-09 Thread Stefan Dösinger
Hi Dan, Did the d3d9 test crash again? Or did it run this time? > Results for today's git (plus my dde patch) are online at > http://kegel.com/wine/valgrind/20071109/ > > ole32/tests/marshall.c has always been hanging > when run under valgrind. In the last two days, > t

Re: [14/15] WineD3D: Get rid of the conditionals in shader_glsl_compare

2007-11-09 Thread Mirek Slugeň
Thanks, this patch works. Mirek Slugen Stefan Dösinger napsal(a): > Hi, > I wrote a test, and I think I found the issue. Can you try the attached patch? >

Re: CryptAcquireContext Failure, default/Type 024 requested

2007-11-09 Thread Vijay Kiran Kamuju
Hi Juan On Nov 9, 2007 2:21 PM, Juan Lang <[EMAIL PROTECTED]> wrote: > Hi Vijay, > > you forgot aes.c in your patch - please remember to git add it, then > commit it along with the rest of the changes. > > From what you've sent, your patch looks pretty good so far. A few comments: > > @@ -161,6 +

Valgrind results for Oct 9: still lots of hangs

2007-11-09 Thread Dan Kegel
Results for today's git (plus my dde patch) are online at http://kegel.com/wine/valgrind/20071109/ ole32/tests/marshall.c has always been hanging when run under valgrind. In the last two days, the following additional tests hang under valgrind: mshtml/tests/dom.c mshtml/tests/html

Re: CryptAcquireContext Failure, default/Type 024 requested

2007-11-09 Thread Juan Lang
Hi Vijay, you forgot aes.c in your patch - please remember to git add it, then commit it along with the rest of the changes. >From what you've sent, your patch looks pretty good so far. A few comments: @@ -161,6 +162,10 @@ static const PROV_ENUMALGS_EX aProvEnumAlgsEx[4][RSAENH_MAX_ENUMALGS+1]

Re: CryptAcquireContext Failure, default/Type 024 requested

2007-11-09 Thread Vijay Kiran Kamuju
Hi, I have implemented the AES support for rsaenh.dll Please test the attached patch. Thanks, VJ On Sep 24, 2007 12:04 PM, Rob Seger <[EMAIL PROTECTED]> wrote: > Sweet! Thanks! > > I'll see what I can do and probably end up asking some more specific > questions later ;) > > Rob > > > On 9/24/07,

Re: winetest.exe broken

2007-11-09 Thread Paul Vriens
Stefan Leichter wrote: > Hello, > > as you all may have noticed winetest.exe does not longer build (see > http://quisquiliae.physics.gla.ac.uk/crossbuild-logs/20071109-11:05.txt ). > The patch: > > 65d865d96313d96889bf8cbe88c931b5e1e9bb74 is firs

Re: winetest.exe broken

2007-11-09 Thread John Klehm
Hi Stefan, On Nov 9, 2007 1:26 PM, Stefan Leichter <[EMAIL PROTECTED]> wrote: > Hello, > > as you all may have noticed winetest.exe does not longer build (see > http://quisquiliae.physics.gla.ac.uk/crossbuild-logs/20071109-11:05.txt ). > The patch: > > 65d865d96313d968

winetest.exe broken

2007-11-09 Thread Stefan Leichter
Hello, as you all may have noticed winetest.exe does not longer build (see http://quisquiliae.physics.gla.ac.uk/crossbuild-logs/20071109-11:05.txt ). The patch: 65d865d96313d96889bf8cbe88c931b5e1e9bb74 is first bad commit commit 65d865d96313d96889bf8cbe88c931b5e1e9bb74 Author: Alexandre

Re: [6/15] WineD3D: Replace the position fixup mul-add-add with a MAD

2007-11-09 Thread Chris Robinson
I think the problem is that the replacement has incorrect order of operations. Originally, it was adding the half-pixel fixup then multiplying to invert the Y, while the MAD replacement does the Y invert first then the half-pixel fix. Also Mirek, can you please stop sending your messages as HTML

Re: xrun handling in winealsa.drv

2007-11-09 Thread Maarten Lankhorst
Hello Timofei, Timofei V. Bondarenko schreef: > No matter how low the chance: sound is an real-time task while linux > is not a real-time system. So underruns still possible. > And in case of XRUN widRecorder() tries to read about 4G of data. > > Well, I'm a busy man too. So I've wrote a simple pa

Re: [14/15] WineD3D: Get rid of the conditionals in shader_glsl_compare

2007-11-09 Thread Stefan Dösinger
Hi, I wrote a test, and I think I found the issue. Can you try the attached patch? From ab21630ac7cddbc6ec17e8ed4dbb06fff34d4577 Mon Sep 17 00:00:00 2001 From: Stefan Doesinger <[EMAIL PROTECTED]> Date: Fri, 9 Nov 2007 19:53:20 +0100 Subject: [PATCH] WineD3D: Partially revert "Get rid of the condit

notepad crashes in VNC @ 16bpp

2007-11-09 Thread Francois Gouget
So if I start a VNC server with the following command: vncserver :1 -depth 16 -geometry 1024x768 Then notepad crashes on startup while initializing OpenGL. More precisely the crash happens in X11DRV_WineGL_InitOpenglInfo() on line 304 of winex11.drv/opengl.c. The reason for the crash is an

Re: xrun handling in winealsa.drv

2007-11-09 Thread Maarten Lankhorst
Hello Timofei, Timofei V. Bondarenko schreef: > No matter how low the chance: sound is an real-time task while linux > is not a real-time system. So underruns still possible. > And in case of XRUN widRecorder() tries to read about 4G of data. > > Well, I'm a busy man too. So I've wrote a simple pa

Re: wininet: make a test pass on all versions of windows

2007-11-09 Thread Lei Zhang
On Nov 9, 2007 2:47 AM, Alexandre Julliard <[EMAIL PROTECTED]> wrote: > "Lei Zhang" <[EMAIL PROTECTED]> writes: > > > + > > + { > > +OSVERSIONINFOEX foo; > > +BOOL r; > > +memset(&foo, 0, sizeof(foo)); > > +foo.dwOSVersionInfoSize = sizeof(foo); > > +r = GetVersionEx((OSVERSION

Re: wininet: make a test pass on all versions of windows

2007-11-09 Thread Alexandre Julliard
"Lei Zhang" <[EMAIL PROTECTED]> writes: > How do we know which set of result to expect then? Do we consider all > three sets of behavior to be acceptable? Or just conform to the newest > behavior? Any results that are returned by Windows are by definition acceptable. So yes, you just have to acce

Re: No Subject

2007-11-09 Thread Detlef Riekenberg
On Fr, 2007-11-09 at 11:38 +1000, Colin M Inglis wrote: your gcc is unable to compile this simple program: | int > | main () > | { > | > | ; > | return 0; > | } Reason: > /usr/bin/ld: can't locate file for: -lcrt1.o you need the development files for the c runtime library (this is "libc6-d

Re: [14/15] WineD3D: Get rid of the conditionals in shader_glsl_compare

2007-11-09 Thread Mirek Slugeň
Hi, this patch caused regression in NFS ProStreet, car models are broken. Mirek Slugen Stefan Dösinger napsal(a):

Re: [6/15] WineD3D: Replace the position fixup mul-add-add with a MAD

2007-11-09 Thread Stefan Dösinger
Am Freitag, 9. November 2007 16:50:54 schrieb Mirek Slugeň: > Hi, this patch caused regression in Nvidia SDK demo BloodShader.exe and > some other games, the main problem is in geometry of some objects, so it > colud be related to vertex shaders. Can you describe the issues a bit more detailed? (e

Re:

2007-11-09 Thread Stefan Dösinger
Am Freitag, 9. November 2007 16:34:30 schrieb Francois Gouget: > On Fri, 9 Nov 2007, Juan Lang wrote: > [...] > > > I'm afraid I can't provide very direct assistance, but your configure > > log indicates something pretty basic is screwed up: > > > > configure:2404: checking for C compiler default o

Re: [6/15] WineD3D: Replace the position fixup mul-add-add with a MAD

2007-11-09 Thread Mirek Slugeň
Hi, this patch caused regression in Nvidia SDK demo BloodShader.exe and some other games, the main problem is in geometry of some objects, so it colud be related to vertex shaders. Mirek Slugen Stefan Dösinger napsal(a):

Re: Valgrind results for Oct 8: lots of hangs?!

2007-11-09 Thread Stefan Dösinger
Am Freitag, 9. November 2007 03:26:52 schrieb Dan Kegel: > Data online at > http://kegel.com/wine/valgrind/20071108/ > > For some reason, today I had to do 'wineserver -k' > about five times (yesterday and the day before > only once). And one of those times was during > a d3d9 test which took ov

Re:

2007-11-09 Thread Francois Gouget
On Fri, 9 Nov 2007, Juan Lang wrote: [...] > I'm afraid I can't provide very direct assistance, but your configure > log indicates something pretty basic is screwed up: > > configure:2404: checking for C compiler default output file name > configure:2431: gccconftest.c >&5 > /usr/bin/ld: can'

Re:

2007-11-09 Thread Juan Lang
Hi Colin, > In particular, I am unfamiliar with the 'configure' executable > described in your installation manual. This script is produced by autoconf. It's the way many (most?) packages are built these days. I'm afraid I can't provide very direct assistance, but your configure log indicates s

Re: xrun handling in winealsa.drv

2007-11-09 Thread Timofei V. Bondarenko
Maarten Lankhorst wrote: > Hello Timofei, > > Timofei V. Bondarenko schreef: >> I've noticed the winealsa does not handle alsa XRUNs. >> In the case of XRUN application hangs. >> > I'm aware of the xrun problems in alsa at least the accelerated parts > (dsoutput/dscapture), it's been on my todo

Re: #winehq admin troubles

2007-11-09 Thread Ben Hodgetts (Enverex)
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 There's something many people are missing here and something that the "noobs" enforce. They come in, know little about wine, then attempt to "help" other people, of course they don't because their information and suggestions are wrong and either a) do

Re: wininet: check the return value from HeapAlloc in a test

2007-11-09 Thread Alexandre Julliard
"Lei Zhang" <[EMAIL PROTECTED]> writes: > We should skip a test if HeapAlloc() fails. There's no need to clutter up the tests with allocations checks, if we are out of memory pretty much everything in the test is going to fail anyway. -- Alexandre Julliard [EMAIL PROTECTED]

Re: wininet: make a test pass on all versions of windows

2007-11-09 Thread Alexandre Julliard
"Lei Zhang" <[EMAIL PROTECTED]> writes: > + > + { > +OSVERSIONINFOEX foo; > +BOOL r; > +memset(&foo, 0, sizeof(foo)); > +foo.dwOSVersionInfoSize = sizeof(foo); > +r = GetVersionEx((OSVERSIONINFO *) &foo); > +if (!r) > +{ > + skip("could not get windows version\n")

[no subject]

2007-11-09 Thread Colin M Inglis
Hi! I'm trying to install Wine for a client, a Mac house, who run some software only supported under Windows or Classic. With the recent introduction of Intel Macs (that no longer support Classic) into the business, the Windows version is, unfortunately, their only upgrade path. I have C developm