Cairo Graphics

2011-04-18 Thread Jaime Rave
Hey Guys, On some of the bugs that i have reported to freedesktop, i have been asked about why Wine is making calls like XDrawSegmentand not using Cairo to handle the 2d drawing which always provides consistent behavior regardless of drivers[1]. I have also read that cairo support "X Window

Re: Patch to fix GetThreadTimes() to work for all threads - fixes Bug 20230

2011-04-18 Thread Vitaliy Margolen
On 04/18/2011 12:45 AM, Ray Hinchliffe (RH) wrote: The patch works by reading from /proc//task//stat. If this in not possible it will report the fix messages as before. Given that SystemProcessorPerformanceInformation uses /proc/stat I expect this Thanks for the patch, however there are several

Re: How to debug steam based games

2011-04-18 Thread Vitaliy Margolen
On 04/18/2011 08:44 PM, Brock York wrote: I was wondering how/what is the best approach to debug steam games under wine? Start Steam in one terminal by itself. Then start game in another terminal with whatever debug channels you need. The only trick here - each game has it's own command line. Y

How to debug steam based games

2011-04-18 Thread Brock York
Hey I was wondering how/what is the best approach to debug steam games under wine. If I launch the actual exe file in the steam folders of the game it just just opens and runs steam then killing the process I launched then actually launching the game. The only way I've found to get any useful outpu

Re: ntdll: Add Windows XP x64

2011-04-18 Thread André Hentschel
Am 17.04.2011 19:26, schrieb Alexandre Julliard: > André Hentschel writes: > >> in 64-bit processor mode you can't use vm86 for 16-bit apps, so you need to >> use dosbox on Windows an Wine does that automaticly (but needs some more >> love). >> So 16-bit vs. kernel-versoin on 64-bit is no probl

Re: wintrust: Implement IsCatalogFile

2011-04-18 Thread Austin English
On Sat, Apr 16, 2011 at 12:34, Juan Lang wrote: > Since I didn't see an updated patch from Austin, here's what I think > should suffice.  Without knowing the app that depends on it, I can't > be certain. Sorry, I had a busy weekend, thanks for fixing it. It works great here! -- -Austin

Re: serial: improve handling of usb2serial adapters

2011-04-18 Thread Austin English
2011/4/18 Wolfgang Walter : Please, one patch per email. Thanks for helping Wine! -- -Austin

Can someone ban tiaotiao (tiaotiao...@hotmail.com -- link spammer)

2011-04-18 Thread Reece Dunn

Re: Fix to bug 25504 for gnutls based schannel

2011-04-18 Thread tiaotiao
You can place on the Tiffany cross necklace with most factors - possibly even sportswear, in the event you are placing on some thing decent for the gym. whether or not you are dressed cutting or are within your sexiest tiny dark gown for just about any evening http://www.thomasaboshop.com/thomas-

DEC Alpha Support

2011-04-18 Thread André Hentschel
Hi all, i would like to remove the remaining Alpha support code, because of all our ports Alpha is the most incomplete and it seems it has no chance to get some love. Further Alpha chips aren't produced anymore since years AFAIK. Any Objections? -- Best Regards, André Hentschel

Re: ntdll: Remove more path trailing chars. (try 2)

2011-04-18 Thread Alexandre Julliard
Vincent Pelletier writes: > Add tests via FindFirstFileA. You need tests for the low-level ntdll functions. -- Alexandre Julliard julli...@winehq.org

Re: Fix to bug 25504 for gnutls based schannel

2011-04-18 Thread Alexandre Julliard
Hans Leidekker writes: > On Mon, 2011-04-18 at 04:23 -0500, Ken Thomases wrote: >> http://www.gnu.org/software/gnutls/manual/gnutls.html#Multi_002dthreaded-applications >> >> Apparently, one uses gnutls_global_set_mutex() to configure the locking >> functions used by GnuTLS. > > Yes, that seems

Re: Fix to bug 25504 for gnutls based schannel

2011-04-18 Thread Hans Leidekker
On Mon, 2011-04-18 at 04:23 -0500, Ken Thomases wrote: > >> I also wonder why libgcrypt is now needed, where this dll is using > >> libgnutls? > > > > Yes, if there's a way to set the locking functions via gnutls then we > > wouldn't need to load libgcrypt. > > http://www.gnu.org/software/gnutls

Re: [PATCH 02/10] msvcrt: Use callback based printf in cprintf functions family

2011-04-18 Thread Alexandre Julliard
Piotr Caban writes: > +printf_arg arg_clbk_valist(void *ctx, int arg_pos, size_t size, __ms_va_list > *valist) > +{ > +printf_arg ret; > + > +if(size == sizeof(LONGLONG)) > +ret.get_longlong = va_arg(*valist, LONGLONG); > +else if(size == sizeof(int)) > +ret.get_int =

Re: Fix to bug 25504 for gnutls based schannel

2011-04-18 Thread Ken Thomases
On Apr 18, 2011, at 3:46 AM, Hans Leidekker wrote: > On Mon, 2011-04-18 at 10:36 +0200, Marcus Meissner wrote: >> On Mon, Apr 18, 2011 at 10:04:08AM +0200, Hans Leidekker wrote: >>> On Sun, 2011-04-17 at 09:42 -0400, jbalent...@tuffmail.com wrote: #ifdef SONAME_LIBGNUTLS #include +

Re: Fix to bug 25504 for gnutls based schannel

2011-04-18 Thread Hans Leidekker
On Mon, 2011-04-18 at 10:36 +0200, Marcus Meissner wrote: > On Mon, Apr 18, 2011 at 10:04:08AM +0200, Hans Leidekker wrote: > > On Sun, 2011-04-17 at 09:42 -0400, jbalent...@tuffmail.com wrote: > > > #ifdef SONAME_LIBGNUTLS > > > #include > > > +#include > > > +#include > > > +#include > > >

Re: [PATCH 1/5] Fix d3dx9_parse_effect_typedef for stuctures.

2011-04-18 Thread Rico Schüller
The patch has the wrong description, I'll fix and resend that. Am 18.04.2011 10:26, schrieb Rico Schüller: --- dlls/d3dx9_36/effect.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)

Re: Fix to bug 25504 for gnutls based schannel

2011-04-18 Thread Marcus Meissner
On Mon, Apr 18, 2011 at 10:04:08AM +0200, Hans Leidekker wrote: > On Sun, 2011-04-17 at 09:42 -0400, jbalent...@tuffmail.com wrote: > > #ifdef SONAME_LIBGNUTLS > > #include > > +#include > > +#include > > +#include > > +GCRY_THREAD_OPTION_PTHREAD_IMPL; > > You should add a separate configur

Re: Fix to bug 25504 for gnutls based schannel

2011-04-18 Thread Hans Leidekker
On Sun, 2011-04-17 at 09:42 -0400, jbalent...@tuffmail.com wrote: > #ifdef SONAME_LIBGNUTLS > #include > +#include > +#include > +#include > +GCRY_THREAD_OPTION_PTHREAD_IMPL; You should add a separate configure check for libgcrypt. Use of pthreads reveals an implementation detail of Wine th