Adobe Photoshop idea

2006-09-30 Thread Karsten Anderson
I know a lot of people really want newer versions of photoshop (CS, CS2) to work with wine, myself included, so I opened up a feature request on Adobe's Photoshop forum, first with the intent to lobby for a Linux version, but then had the idea that maybe it would be more realistic to get Photoshop

Making cxtest.org more usable by linking it to app db and bugzilla

2006-09-30 Thread Dan Kegel
It occurred to me that one problem with cxtest.org is that it's hard to browse the results of a particular application - and that it would be really cool if the app db and bugzilla had a filed called 'cxtest results' that linked to the cxtest results for the application in question. Naturally, th

Re: dlls/user/tests/win.c fix

2006-09-30 Thread Juan Lang
> No it's not correct. Does the attached patch fix the failure? Not sure. I get a similar failure on an earlier line: win.c:2508: Test failed: message 0200 available This is the repeated failure after rerunning the tests several times to get past earlier intermittent failures. --Juan _

Re: [PATCH] local fixes in ioctl for google video.

2006-09-30 Thread Dmitry Timoshkov
"Marcus Meissner" <[EMAIL PROTECTED]> wrote: @@ -2125,6 +2125,13 @@ INT WINAPI WSAIoctl(SOCKET s, switch( dwIoControlCode ) { + case 0x8004667E: + FIXME("8004667E: stub!\n"); + break; + case 0x4004667f: /* FIONREAD */ + FIXME("4004667f/FIONREAD: stub, returning 1!\n"); + *(DWORD*)lpbO

Re: str{n}casecmp(): unrecognized identifier

2006-09-30 Thread Andrew Talbot
Dmitry Timoshkov wrote: > str[n]casecmp should be used only to compare strings received from an > underlying system, in all other cases win32 API lstrcmp[i]A should be > used instead, otherwise bad side effects could arise due to using wrong > locale. > I see. I would mention that, currently, the

Re: todo_wine problems

2006-09-30 Thread Dmitry Timoshkov
"Jeff L" <[EMAIL PROTECTED]> wrote: I am having trouble with getting todo_wine working. It seems to be ignored and the test is being executed on wine and failing as expected. Is there a trick to setting todo up? According to all the examples and the text this should work: todo_wine

Re: str{n}casecmp(): unrecognized identifier

2006-09-30 Thread Dmitry Timoshkov
"Andrew Talbot" <[EMAIL PROTECTED]> wrote: It seems that, on my [x86_64] system, at least, string.h is not being included in the files where strcasecmp() or strncasecmp() is used (for example, in crypt32/oid.c), despite HAVE_STRCASECMP and HAVE_STRNCASECMP being defined as 1. str[n]casecmp sho

Re: [PATCH] Use correct headers for strcasecmp

2006-09-30 Thread Mike McCormack
Marcus Meissner wrote: We need to include string.h and also wine/port.h to get strcasecmp on platforms where it is missing. In Win32 code, shouldn't we be using lstrcmpi instead? Mike

Re: str{n}casecmp(): unrecognized identifier

2006-09-30 Thread Marcus Meissner
On Sat, Sep 30, 2006 at 10:50:27AM +0100, Andrew Talbot wrote: > Hi, > > It seems that, on my [x86_64] system, at least, string.h is not being > included in the files where strcasecmp() or strncasecmp() is used (for > example, in crypt32/oid.c), despite HAVE_STRCASECMP and HAVE_STRNCASECMP > being

str{n}casecmp(): unrecognized identifier

2006-09-30 Thread Andrew Talbot
Hi, It seems that, on my [x86_64] system, at least, string.h is not being included in the files where strcasecmp() or strncasecmp() is used (for example, in crypt32/oid.c), despite HAVE_STRCASECMP and HAVE_STRNCASECMP being defined as 1. I presume, because of the above defines, that just adding

Re: wine-devel Digest, Vol 14, Issue 93

2006-09-30 Thread Anton Litvinov
- Original Message - From: <[EMAIL PROTECTED]> To: Sent: Friday, September 29, 2006 8:58 PM Subject: wine-devel Digest, Vol 14, Issue 93 > Send wine-devel mailing list submissions to > wine-devel@winehq.org > > To subscribe or unsubscribe via the World Wide Web, visit > http://www.wine

Re: [Bug 4995] Check for fontforge >= 20060406 as earlier versions fail to build our fonts with catastrophic results.

2006-09-30 Thread Mike McCormack
Sam Dennis wrote: +if PKG_CHECK_MINVER(fontforge, 20060406); then configure should check for features, not versions. This avoids problems with patched older versions or newer versions with features removed. To check for fontforge correctly, we need to check that it will generate a ttf fil

Re: todo_wine problems

2006-09-30 Thread James Hawkins
On 9/30/06, Jeff L <[EMAIL PROTECTED]> wrote: I am having trouble with getting todo_wine working. It seems to be ignored and the test is being executed on wine and failing as expected. Is there a trick to setting todo up? According to all the examples and the text this should work: todo

todo_wine problems

2006-09-30 Thread Jeff L
I am having trouble with getting todo_wine working. It seems to be ignored and the test is being executed on wine and failing as expected. Is there a trick to setting todo up? According to all the examples and the text this should work: todo_wine { ok(hr == S_OK, "Scr

Re: dlls/user/tests/win.c fix

2006-09-30 Thread Dmitry Timoshkov
"Juan Lang" <[EMAIL PROTECTED]> wrote: The attached patch (sorry, crappy mailer) fixes the win.c failure I was seeing. Is it correct? No it's not correct. Does the attached patch fix the failure? -- Dmitry. --- cvs/hq/wine/dlls/user/tests/win.c 2006-08-05 15:05:54.0 +0900 +++ wine/