Re: winex11: use XkbKeycodeToKeysym instead of (deprecated) XKeycodeToKeysym (see http://bugs.freedesktop.org/show_bug.cgi?id=5349)

2010-04-20 Thread Dmitry Timoshkov
Alexandre Goujon wrote: > -if (!(keysym = XKeycodeToKeysym (display, keyc, i))) continue; > +if (!(keysym = XkbKeycodeToKeysym (display, keyc, 0, i))) continue; Not every X11 implementation has the XKB extenstion. You may want to take into account 'use_xkb' and 'HAVE_XKB'. -- D

Re: [1/2] include/wine: add option to specify the unittest target via environment variable

2010-04-20 Thread Stefan Leichter
Am Tuesday 20 April 2010 20:57:41 schrieb Paul Vriens: > On 04/20/2010 08:37 PM, Stefan Leichter wrote: > > Am Tuesday 20 April 2010 07:59:22 schrieb Paul Vriens: > >> On 04/19/2010 11:44 PM, Stefan Leichter wrote: > >>> --- > >>>include/wine/test.h |6 +- > >>>1 files changed, 5 ins

Re: Writing test programs for dlls/krnl386.exe16

2010-04-20 Thread Dmitry Timoshkov
Morten Rønne wrote: > I can't see what I should have missed in Makefile.in for this to fail. I would > expect the needed rules would be made automatically when creating the final > Makefile with make depend. > > I can run tests in kernel32 just fine. 1. You went in the wrong direction by choosi

Re: Adding translation for wineprefixcreate manpage

2010-04-20 Thread Alexandre Julliard
Frédéric Delanoy writes: > In the process, I also added the wineprefixcreate En manpage in the "install > install-dev". Is that problematic? > > Could so please tell me what I did wrong so I can fix and resubmit the patch? I don't think there's much point in adding translations for wineprefixcr

Adding translation for wineprefixcreate manpage

2010-04-20 Thread Frédéric Delanoy
Hi folks, A couple of days ago, I submitted a patch to add French manpage of wineprefixcreate, which was discarded (see attachment). I modeled it after German winemaker addition (SHA d53e75af1474d0bd9c8b8660827baaf8fe708f4c) by adding - entries in tools/Makefile.in - a .gitignore entry for the

Re: Writing test programs for dlls/krnl386.exe16

2010-04-20 Thread Morten Rønne
Hi Thank you for the pointers Dmitry. But it seems none of these projects made any progress since no tests have turned up in the git tree. :) Also none of these really answers any of the question I asked in any detail. So I have tried to follow the description on how to add a new test, but I

Graphics Driver Interface Standardization

2010-04-20 Thread Charles Davis
Hi, I'm getting ready to implement the Quartz Driver. For those of you who don't know, this is a special graphics driver that only works on Mac OS X, and uses its native Core Graphics (aka, Quartz) system to draw. But before I can do this, there are two things that need to be done: 1. Wine curre

Re: [PATCH 4/6] [WineGcc]: when specifying -m32, force i386 cpu when compiling on x86_64 boxes

2010-04-20 Thread Eric Pouech
André Hentschel a écrit : Hi Eric, That will not be enough as it will still just find the 64-bit libs. Maybe we should implement a check in utils.c if it is a ELF32 or ELF64 lib which we try to import. AFAICS it's not worse than when we use -b i386-elf when building for wow64, we use winegc

Re: Winebuild b0rken on Mac OS X?

2010-04-20 Thread Charles Davis
On 4/20/10 1:26 PM, eric lanz wrote: > I've seen this error using the os 4.0 beta 1 sdk, using the GM 3.2 sdk I > don't get this error -- so the last couple weeks I've been switching > sdk's back and forth to get around the problem. I'm downloading os 4.0 > beta 2 right now to see if apple fixed i

Re: Winebuild b0rken on Mac OS X?

2010-04-20 Thread eric lanz
I've seen this error using the os 4.0 beta 1 sdk, using the GM 3.2 sdk I don't get this error -- so the last couple weeks I've been switching sdk's back and forth to get around the problem.  I'm downloading os 4.0 beta 2 right now to see if apple fixed it. --- On Tue, 4/20/10, Charles Davis w

Re: [1/2] include/wine: add option to specify the unittest target via environment variable

2010-04-20 Thread Paul Vriens
On 04/20/2010 09:04 PM, Juan Lang wrote: To get around this problem and make a valid unittest without fixing the problem, i looked for another way to pass the test target to the executable. This statement classifies this patch as a hack, not? Perhaps, but there's a chicken and egg problem: f

Winebuild b0rken on Mac OS X?

2010-04-20 Thread Charles Davis
While building Wine (latest git) on Mac OS X, I noticed this: /usr/bin/nm: object: amstream_test.MDsdpi.o malformed object (LC_SEGMENT command 0 filesize field greater than vmsize field) Undefined symbols: "_GetDesktopWindow", referenced from: _func_amstream in amstream.o "_TlsGetValue",

Re: [PATCH] d3dx9_36: Implement D3DXCheckTextureRequirements + tests

2010-04-20 Thread Christian Costa
Yeah, I was refering to this particular error. I just saw I didn't commit the remaining code to my public git repo (... because it's a bit ugly), this ( http://tonwas.freefronthost.com/gsocwork.tar.gz ... early snapshot of my work, which I vastly cleaned up lateron) tarball provides the remainin

Re: [1/2] include/wine: add option to specify the unittest target via environment variable

2010-04-20 Thread Juan Lang
>> To get around this problem and make a valid unittest without fixing the >> problem, i looked for another way to pass the test target to the >> executable. > > This statement classifies this patch as a hack, not? Perhaps, but there's a chicken and egg problem: fixing the problem without a valid

Re: [1/2] include/wine: add option to specify the unittest target via environment variable

2010-04-20 Thread Paul Vriens
On 04/20/2010 08:37 PM, Stefan Leichter wrote: Am Tuesday 20 April 2010 07:59:22 schrieb Paul Vriens: On 04/19/2010 11:44 PM, Stefan Leichter wrote: --- include/wine/test.h |6 +- 1 files changed, 5 insertions(+), 1 deletions(-) Hi Stefan, What's the idea/thought behind this (or

ImageCapture Wine TWAIN plug-in

2010-04-20 Thread C.W. Betts
Anybody else up for the idea of an ImageCapture (Mac OS X) plug-in for Wine's TWAIN? It would fit the role of sane.ds and gphoto.ds, as it can both scan and access cameras. ImageCapture can also use Mac OS X TWAIN drivers.

Re: [1/2] include/wine: add option to specify the unittest target via environment variable

2010-04-20 Thread Stefan Leichter
Am Tuesday 20 April 2010 07:59:22 schrieb Paul Vriens: > On 04/19/2010 11:44 PM, Stefan Leichter wrote: > > --- > > include/wine/test.h |6 +- > > 1 files changed, 5 insertions(+), 1 deletions(-) > > Hi Stefan, > > What's the idea/thought behind this (or what problem are you trying to >

Re: imm32: rework storage of thread default contexts

2010-04-20 Thread Aric Stewart
I think for threadproc function it should be WINAPI or CALLBACK. DWORD WINAPI ThreadProc( __in LPVOID lpParameter ); yes. I should set the test to be static. -aric André Hentschel wrote: Hi Aric, You should have a second look at the Function heads in the tests (imm32.c). I doubt WINAPI sh

Re: imm32: rework storage of thread default contexts

2010-04-20 Thread André Hentschel
Hi Aric, You should have a second look at the Function heads in the tests (imm32.c). I doubt WINAPI should be used and the functions should be static. -- Best Regards, André Hentschel

Re: [PATCH 4/6] [WineGcc]: when specifying -m32, force i386 cpu when compiling on x86_64 boxes

2010-04-20 Thread André Hentschel
Hi Eric, That will not be enough as it will still just find the 64-bit libs. Maybe we should implement a check in utils.c if it is a ELF32 or ELF64 lib which we try to import. -- Best Regards, André Hentschel

Re: [PATCH] d3dx9_36: Implement D3DXCheckTextureRequirements + tests

2010-04-20 Thread Tony Wasserka
Am 19.04.2010 20:48, schrieb Christian Costa: > Well, it's your code, correct ? > I suggest to simply remove these checks. There does not bring any > added values. It's my own code, but I noticed this flaw some time after GSoC was over, it can be quite disturbing. Additionally, the checks might not

Re: [2/2] dlls/shell32/tests: add some tests for ShellExecuteEx

2010-04-20 Thread Greg Geldorp
Hi, 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/JobDetails.pl?Key=1612 Your paranoid android.