kernel32/process: Add stderr redirection for native linux programs started from windows program

2011-02-13 Thread Igor Egorov
A week ago I submitted a patch for stderr redirection (http://www.winehq.org/pipermail/wine-patches/2011-February/098578.html), is there still something wrong with it? Will it be accepted?

Re: wine is passing make test again :-)

2011-02-13 Thread Austin English
2011/2/13 André Hentschel : > Am 08.02.2011 08:14, schrieb Austin English: >> Looks like Jacek and Gentoo have the magic combination. It's passed 4 >> days in a row: >> http://test.winehq.org/data/ae3e768a2e1f9c21b355798c8fbf473db3d83434/wine_jc-gentoo64-win32/version.html >> http://test.winehq.org

D3DXCreateTorus patch... thoughts?

2011-02-13 Thread Misha Koshelev
This is for http://bugs.winehq.org/show_bug.cgi?id=23930 Based on my prior mesh patches. Test bot reports success: https://testbot.winehq.org/JobDetails.pl?Key=9240 Thank you Misha From c2c3f5299cad1d78cff4457716c550687b818706 Mon Sep 17 00:00:00 2001 From: Misha Koshelev Date: Sun, 13 Feb 2011

Re: gdi32/dib.c: Write true bitmap height into info and copy scanlines in the correct order.

2011-02-13 Thread Jack Edmonds
Sorry about that. I added the newlines in my latest patch. Thanks for telling me. On Feb 8, 2011 4:22 AM, "Nicolas Le Cam" wrote: > 2011/2/8 Jack Edmonds > >> Fixes bug 25698 and addresses one of the test cases in bug 24278 (possibly >> resolves bug 24278 but more testing is required to be sure).

Re: comctl32/tests: Add two casts to avoid comparisons of differentint types.

2011-02-13 Thread Janne Hakonen
Hmm, looking at this my patch changes ok(*(ULONG_PTR*)g_drawitem.itemData == lparam, "got %lx, expected %lx\n", gdrawitem.itemData, lparam); to ok(*(ULONG_PTR*)g_drawitem.itemData == (ULONG)lparam, "got %lx, expected %lx\n", g_drawitem.itemData, lparam); That is, the only di

Re: Wine and Summer of Code 2011

2011-02-13 Thread Jacek Caban
On 2/8/11 7:04 PM, Dan Kegel wrote: And can y'all think of any fresh ideas for the suggested projects list How about implementing wscript builtin script API? or ideas that should be retired? - Wine IE GUI Its easy parts are mostly already implemented in hacky way. Further work requires imp

Re: vblank timestamps and page flipping in DRI2

2011-02-13 Thread Stefan Dösinger
Am Sonntag 13 Februar 2011, 18:33:48 schrieb Saulius Krasuckas: > There are some news on the $Subject: [1]. > (have a look at the chapter "Fine tuned") > > I thought it could help Wine fixing such bugs as 6086, 13085, 17260, 22362 The last 3 should be fixed by now, on any driver that implements G

Re: winex11.drv: map_window should honor iconic state

2011-02-13 Thread Alexander Lakhin
13.02.2011 00:06, Alexandre Julliard writes: Alexander Lakhin writes: I've checked XWMHints just before XMapWindow call and received the correct initial_state (IconicState) and flags (StateHint set) there. But the window still displayed not in a minimized state. To isolate the issue I tried

Re: comctl32/tests: Add two casts to avoid comparisons of different int types.

2011-02-13 Thread Gerald Pfeifer
On Sun, 13 Feb 2011, Marvin wrote: > While running your changed tests on Windows, I think I found new failures. > Being a bot and all I'm not very good at pattern recognition, so I might be > wrong, but could you please double-check? > Full results can be found at > http://testbot.winehq.org/JobDet

vblank timestamps and page flipping in DRI2

2011-02-13 Thread Saulius Krasuckas
There are some news on the $Subject: [1]. (have a look at the chapter "Fine tuned") I thought it could help Wine fixing such bugs as 6086, 13085, 17260, 22362 [2]. I'll paste the text in just for archiving purposes: --- quote --- Fine tuned The kernel hackers have extended the DRM infrastructu

Re: wine is passing make test again :-)

2011-02-13 Thread André Hentschel
Am 08.02.2011 08:14, schrieb Austin English: > Looks like Jacek and Gentoo have the magic combination. It's passed 4 > days in a row: > http://test.winehq.org/data/ae3e768a2e1f9c21b355798c8fbf473db3d83434/wine_jc-gentoo64-win32/version.html > http://test.winehq.org/data/bf640445c748b0588616da201e8f

Re: Tiny imap message appender written in perl

2011-02-13 Thread Krzysztof Nikiel
Yes, it works differently from git-imap-send, it takes separate files as input. 2011/2/13 GOUJON Alexandre : > On 02/13/2011 12:10 PM, Krzysztof Nikiel wrote: >> >> It's a kind of side effect of my Wine patching. >> Sending those patches traditional way was an epic fail. Mail client >> wrapped lin

Re: Tiny imap message appender written in perl

2011-02-13 Thread GOUJON Alexandre
On 02/13/2011 12:10 PM, Krzysztof Nikiel wrote: It's a kind of side effect of my Wine patching. Sending those patches traditional way was an epic fail. Mail client wrapped lines, git-imap-send provided by Debian don't support SSL. I have modified my tiny imap downloader to append new messages to

Tiny imap message appender written in perl different attachment

2011-02-13 Thread Krzysztof Nikiel
This attachment may be better: #!/usr/bin/perl # SSL IMAP message appender # Copyright (C) 2011 Krzysztof Nikiel use Socket; use Net::SSLeay qw(die_now die_if_ssl_error); Net::SSLeay::load_error_strings(); Net::SSLeay::SSLeay_add_ssl_algorithms(); Net::SSLeay::randomize(); $g_port=993; $g_tag=1

Tiny imap message appender written in perl

2011-02-13 Thread Krzysztof Nikiel
It's a kind of side effect of my Wine patching. Sending those patches traditional way was an epic fail. Mail client wrapped lines, git-imap-send provided by Debian don't support SSL. I have modified my tiny imap downloader to append new messages to specified box. It uses Net::SSLeay module. Maybe