Re: secur32: check for variable before freeing it

2009-10-13 Thread Austin English
On Tue, Oct 13, 2009 at 11:12 AM, Austin English wrote: > On Tue, Oct 13, 2009 at 8:30 AM, Vitaliy Margolen > wrote: >> Henri Verbeet wrote: >>> 2009/10/13 Austin English : >>>>              cred = schan_free_handle(i, SCHAN_HANDLE_CRED); >>>> -  

Re: secur32: check for variable before freeing it

2009-10-13 Thread Austin English
On Tue, Oct 13, 2009 at 8:30 AM, Vitaliy Margolen wrote: > Henri Verbeet wrote: >> 2009/10/13 Austin English : >>>              cred = schan_free_handle(i, SCHAN_HANDLE_CRED); >>> -            pgnutls_certificate_free_credentials(cred->credenti

Re: Help me get a patch into Wine

2009-10-13 Thread Austin English
On Mon, Oct 12, 2009 at 2:18 PM, Charles Davis wrote: > Keith Muir wrote: >> Charles Davis wrote: >>> Damn it, I keep forgetting to reply all. >>> >>> Charles Davis wrote: >>> Vitaliy Margolen wrote: > Charles Davis wrote: > >> Hi, >> >> My name is Charles Davis, but

Re: [try 4] Add help message box to dxdiag implementation

2009-10-09 Thread Austin English
On Fri, Oct 9, 2009 at 7:32 AM, Joel Holdsworth wrote: > I'm just wondering how easy would it be to do something simple with a > proper dialog template. The reason I ask is that I've been working on an > icon for dxdiag (http://www.airwebreathe.org.uk/wine-icon/), and it'd be > nice if there was a

Re: Multiple wineservers?

2009-10-07 Thread Austin English
On Wed, Oct 7, 2009 at 2:20 PM, David Gerard wrote: > I suppose you could run different versions of Wine if you needed to by > a similar process, e.g. > >    WINEPREFIX=/home/user/.wine101 /usr/bin/wine app1.exe >    WINEPREFIX=/home/user/.wine1130 ~/wine/wine app2.exe Yes, you can. -- -Austin

DLL Hell 2.0

2009-10-05 Thread Austin English
http://developers.slashdot.org/story/09/10/04/1956225/Side-By-Side-Assemblies-Bring-DLL-Hell-20 Interesting read... -- -Austin

Re: urlmon #11: Move setting protocol_sink to separated function.

2009-10-03 Thread Austin English
2009/10/3 ink Griffioen : Forgot the patch. -- -Austin

Appinstall now supports standalone testing

2009-09-26 Thread Austin English
Howdy all, I've tweaked appinstall slightly so that anyone can run it without needing an ssh webserver to host the files. Simply do: $ wget http://winezeug.googlecode.com/svn/trunk/appinstall/appinstall.sh $ sh appinstall.sh That will download all the programs and run the tests. The results will

Re: Ignore EINTR poll result code in WS_select

2009-09-25 Thread Austin English
2009/9/25 Dmitriy Anisimkov : > Dear Wine Developers, > > Looks like such ignorance is usual practice in wine. > I just need to ignore EINTR in one more place. > Otherwise our client application is bad working in Wine. Patches should be sent to wine-patc...@winehq.org, not wine-devel. -- -Austin

Re: dlls/user32/edit.c -- remove superflous check

2009-09-24 Thread Austin English
On Thu, Sep 24, 2009 at 3:15 PM, todd baker wrote: You forgot the patch. -- -Austin

Re: Fix for Bug 19851 (try 4) - Interlocked instruction support for ARM

2009-09-24 Thread Austin English
On Thu, Sep 24, 2009 at 12:19 PM, Colin Fowler wrote: > Removed trailing white-spaces. I think this is good to go now :) Close ;-). > +#elif defined(__arm__) Like AJ said, if it's generic enough to be used on most archs, it should be the fall back. So instead of '+#elif defined(__arm__)', use '

Re: [bugzilla] donate to sponsoring bug

2009-09-24 Thread Austin English
On Thu, Sep 24, 2009 at 8:16 AM, Francois Gouget wrote: > That said I really don't care much because the Wine project would not > know what to do with the money anyway. It's not that sponsoring > developers to go to the Wine conference is not good but it does not > scale. > > So if we raised 1

Re: tools/winegcc: fix linker for Haiku

2009-09-21 Thread Austin English
On Mon, Sep 21, 2009 at 11:39 PM, Detlef Riekenberg wrote: > On Mo, 2009-09-21 at 01:52 -0500, Austin English wrote: >> +#ifdef __HAIKU__ >> +       strarray_add(link_args, "-lroot"); >> +#else >> +       strarray_add(link_args, "-lm"); >&g

Re: Fix for Bug 19851 - Interlocked instruction support for ARM

2009-09-21 Thread Austin English
2009/9/21 André Hentschel : >> >> This patch fixes bug 19851 http://bugs.winehq.org/show_bug.cgi?id=19851 >> One more step towards winelib on ARM :) >> >> Apologies if this comes through as a double post. I inadvertently sent the >> mail >> before my subscription to the list went through properly.

Re: porting winetricks to windows

2009-09-19 Thread Austin English
On Sat, Sep 19, 2009 at 9:11 PM, Ben Klein wrote: > 2009/9/20 Dan Kegel : >> On Sat, Sep 19, 2009 at 9:49 AM, Steven Edwards wrote: >>> I would try to make it supported by default under msys. >> >> Go for it. >> >> I'm focusing on cygwin because that's where I'm comfortable, >> but msys is just a

Re: Add dxdiag help message box

2009-09-19 Thread Austin English
On Fri, Sep 18, 2009 at 4:35 PM, Brian Nguyen wrote: > Here's an updated patch that stores the string in an En.rc resource file and > loads it using a wrapper for LoadString. How does this look? The text still matches Windows'. -- -Austin

Re: clock: fix license in Swedish resources

2009-09-18 Thread Austin English
2009/9/15 Austin English : > Wine is LGPL, not GPL. Also, convert to UTF-8. > > -- > -Austin Something wrong with these two patches? -- -Austin

Re: glean and Piglit -- OpenGL driver testing

2009-09-17 Thread Austin English
On Thu, Sep 17, 2009 at 3:16 PM, Henri Verbeet wrote: > 2009/9/17 Saulius Krasuckas : > >> Then there is PerceptualDiff utility I found some time ago [3].  Guessed, >> could it also usefull for finding visual regressions of Wine?  Probably >> not, as it seems to be used for testing video codecs (b

Re: Add dxdiag help message box

2009-09-17 Thread Austin English
On Thu, Sep 17, 2009 at 6:34 AM, Henri Verbeet wrote: > 2009/9/17 Brian Nguyen : >> +/* Thread-safe function for converting to wide char strings at runtime */ >> +LPWSTR PrintWide(LPWSTR buf, size_t len, const char *s) >> +{ >> +    size_t i; >> +    for (i = 0; i < len && *s != '\0'; i++, s++) {

Re: Wine at Ohloh

2009-09-15 Thread Austin English
On Mon, Sep 14, 2009 at 12:28 PM, Paul Vriens wrote: > On 09/14/2009 07:17 PM, Austin English wrote: >> >> On Mon, Sep 14, 2009 at 12:08 PM, Saulius Krasuckas >>  wrote: >>> >>> FYI, http://www.ohloh.net/p/wine/analyses/latest >>> >>> I w

Re: Wine at Ohloh

2009-09-14 Thread Austin English
On Mon, Sep 14, 2009 at 12:08 PM, Saulius Krasuckas wrote: > FYI, http://www.ohloh.net/p/wine/analyses/latest > > I wonder how do they find 27k lines of C++ code in Wine tree... According to that, there are also 2 files that are GPL 3, and 2 others that are GPL 2.0, I think their stats are a bit

Re: wined3d: Fix vendor detection when using an Intel X4500HD

2009-09-08 Thread Austin English
On Mon, Sep 7, 2009 at 11:52 PM, Jaime Rave wrote: > This patch fix the fixme: > > fixme:d3d_caps:wined3d_guess_vendor Received unrecognized GL_VENDOR > "Tungsten Graphics, Inc". Returning VENDOR_WINE. > > > > Forgot the patch. -- -Austin

Re: [PATCH] [WineDbg]: fix backend prototypes for PowerPC and Alpha

2009-09-01 Thread Austin English
On Tue, Sep 1, 2009 at 3:23 PM, Eric Pouech wrote: > > > > A+ > --- > >  programs/winedbg/be_alpha.c |    8 >  programs/winedbg/be_ppc.c   |    8 >  2 files changed, 8 insertions(+), 8 deletions(-) > > > diff --git a/programs/winedbg/be_alpha.c b/programs/winedbg/be_alpha.c > inde

Re: Mirror Space

2009-09-01 Thread Austin English
On Tue, Sep 1, 2009 at 2:52 PM, Scott Ritchie wrote: > Marty Cannon wrote: >> Hey guys, >> Since the wine.budgetdedicated.com >> server was down all weekend, I thought I'd offer an additional mirror >> location. I currently mirror several major linux distributions,

Re: [PATCH] [WineDbg]: fix backend prototypes for PowerPC and Alpha

2009-08-31 Thread Austin English
On Mon, Aug 31, 2009 at 3:02 PM, Eric Pouech wrote: > > > > A+ > --- > >  programs/winedbg/be_alpha.c |    8 >  programs/winedbg/be_ppc.c   |    8 >  2 files changed, 8 insertions(+), 8 deletions(-) > > > diff --git a/programs/winedbg/be_alpha.c b/programs/winedbg/be_alpha.c > ind

Re: Weekly cppcheck run against Aug 27 Git Tree

2009-08-28 Thread Austin English
On Fri, Aug 28, 2009 at 4:06 AM, Ben Klein wrote: > Changing these to single constant values would make it > much harder for the casual observer to read. That's what comments are for. -- -Austin

Re: dxdiag: add basic commandline parsing (try 2)

2009-08-26 Thread Austin English
On Wed, Aug 26, 2009 at 3:26 PM, Jacek Caban wrote: > Hi Austin, > > Austin English wrote: >> >> Please apply after the first dxdiag patch (unicode-ify). Based on a >> patch by Dan Kegel. >> >> > >       case 'w': > +          

Re: dxdiag: add basic command line parsing

2009-08-26 Thread Austin English
On Wed, Aug 26, 2009 at 9:43 AM, Austin English wrote: > On Wed, Aug 26, 2009 at 3:34 AM, Henri Verbeet wrote: >> 2009/8/26 Austin English : >>> Based on Dan Kegel's patch he wrote for Louis Lenders old implementation. >>> >> It probably doesn't

Re: Towards leveraging app build and unit tests as a way to test wine

2009-08-26 Thread Austin English
On Wed, Aug 26, 2009 at 11:29 AM, Dan Kegel wrote: > I'd like to add a new keyword in bugzilla > for bugs that block running an automated > build script.  appbuild, maybe? FWIW, I filed a bunch of bugs found while testing with Appinstall, and put (Appinstall) in the title. But a keyword would be n

Re: dxdiag: add basic command line parsing

2009-08-26 Thread Austin English
On Wed, Aug 26, 2009 at 3:34 AM, Henri Verbeet wrote: > 2009/8/26 Austin English : >> Based on Dan Kegel's patch he wrote for Louis Lenders old implementation. >> > It probably doesn't make much of a difference for command line > parsing, but I think you want to make

Re: tools/wine.inf: fix New Zealand DST

2009-08-25 Thread Austin English
On Tue, Aug 25, 2009 at 10:07 PM, Dmitry Timoshkov wrote: > "Austin English" wrote: > >> Reported in wine-users. > > Two points: > 1. These data are auto generated. Where from? > 2. Existing data for New Zealand Standard Time,"TZI" do match

Re: netapi32/tests: Fix tests on Win7

2009-08-24 Thread Austin English
On Mon, Aug 24, 2009 at 7:40 AM, Greg Geldorp wrote: > From: Austin English >> On Mon, Aug 24, 2009 at 7:19 AM, Ge van Geldorp >> wrote: >> -        ok(totalEntries > 0, "at least one transport\n"); >> +        ok(totalEntries > 0 || broken(totalEntries

Re: netapi32/tests: Fix tests on Win7

2009-08-24 Thread Austin English
On Mon, Aug 24, 2009 at 7:19 AM, Ge van Geldorp wrote: > Win7 no longer exports NetpGetComputerName() and returns a weird value for > totalEntries in the NetWkstaTransportEnum() call > > Changelog: >  netapi32/tests: Fix tests on Win7 > --- >  dlls/netapi32/tests/wksta.c |    8 ++-- >  1 files

Re: kernel32/tests: Remove test that crashes on Win7

2009-08-24 Thread Austin English
On Mon, Aug 24, 2009 at 7:15 AM, Ge van Geldorp wrote: > Changelog: >  kernel32/tests: Remove test that crashes on Win7 > > --- >  dlls/kernel32/tests/console.c |   12 +--- >  1 files changed, 1 insertions(+), 11 deletions(-) Rather than removing it, should probably #if 0 it out, so that i

Re: Easy starter bug: implement extrac32

2009-08-24 Thread Austin English
On Sun, Aug 23, 2009 at 11:10 PM, Alexandros Dermenakis wrote: > sounds like an interesting project, I could work on this. For any questions > or tips etc. I should send to this list? As I mentioned in previous emails, > I'm a nb with wine, I have some experience with driver development and some >

Re: Easy starter bug: implement extrac32

2009-08-23 Thread Austin English
On Sun, Aug 23, 2009 at 2:49 PM, Dan Kegel wrote: > http://bugs.winehq.org/show_bug.cgi?id=18097 > Sounds pretty easy... somebody already tried > to do it, but didn't finish: > http://www.winehq.org/pipermail/wine-devel/2007-July/057886.html > http://www.winehq.org/pipermail/wine-patches/2007-July/

Re: font-shape/font-query related regression in wine 1.1.28

2009-08-23 Thread Austin English
On Sun, Aug 23, 2009 at 2:02 PM, Hin-Tak Leung wrote: > My favourite mono/.net application dies with 'Style Regular isn't supported > by font Tahoma' in 1.1.28. > > I did a git bisect and > commit 0b9ba054f6c8a2d96c898e7325087f56a6224644 > Author: André Hentschel > Date:   Wed Aug 12 19:19:32 200

Re: Regressions when running WoW

2009-08-22 Thread Austin English
On Fri, Aug 21, 2009 at 11:17 PM, F Capela wrote: > I use Wine mostly to play World of Warcraft and I've had a regression in > World of Warcraft (when running fullscreen inside a virtual desktop and using > the opengl renderer) with patches from the last two weeks: > > - Patch 12d1ff8ef6c34533a20

Appinstall strikes again!

2009-08-21 Thread Austin English
So, I've been on vacation this past week. Before leaving, I ran 'daily ; daily ; daily ; daily ; daily' to make sure they daily build scripts still ran while I was gone. Looking at the logs, I found something interesting: wordviewer03-result.txt:wordview_en-us.exe didn't crash. Bug 19185 TODO_FIXE

Re: Regression Testing 0.9.60/0.9.61

2009-08-16 Thread Austin English
On Sun, Aug 16, 2009 at 2:10 PM, James McKenzie wrote: > Looks like a patch to 0.9.61 broke the EM_FORMATRANGE patch that I was > working on.  I've received guidance from Dylan Smith on how to redo the > patch and I will once I get the old patch working with 1.0. > > Guidance on how to use git to r

Re: winecfg: Let the user specify the drive letter of a to be added drive.

2009-08-16 Thread Austin English
On Sun, Aug 16, 2009 at 1:12 PM, Rein Klazes wrote: > fixes bug#14728 > --- >  programs/winecfg/Bg.rc      |   10 + >  programs/winecfg/Cs.rc      |   10 + >  programs/winecfg/Da.rc      |   10 + >  programs/winecfg/De.rc      |   10 + >  programs/winecfg/En.rc      

Re: Appinstall testing guide up on the wiki

2009-08-16 Thread Austin English
On Sat, Aug 15, 2009 at 5:47 PM, Matt Perry wrote: > On Sat, Aug 15, 2009 at 11:58 AM, Austin English > wrote: >> James asked me to put up a guide for testing applications with >> Appinstall. > > The guide looks great. Will there be any service to facilitate sharing &g

Re: Appinstall testing guide up on the wiki

2009-08-16 Thread Austin English
2009/8/16 Nicklas Börjesson : > This looks way cool. If no one else have already started, I'll have a go with > PS CS4. Excellent. You may want to start with something simpler. CS4 is a beast, and probably has a lot of hidden bugs. Start with something that works well, to get used to coding up te

Appinstall testing guide up on the wiki

2009-08-15 Thread Austin English
Howdy all, James asked me to put up a guide for testing applications with Appinstall. It's on the wiki (which seems to be down at the moment) at http:/wiki.winehq.org/Appinstall_Testing. I had a couple people read over it to make sure I didn't miss anything obvious (or omit stuff that seems obviou

Re: Conformance tests

2009-08-14 Thread Austin English
On Fri, Aug 14, 2009 at 3:10 PM, Keith Muir wrote: > What disturbs me about the conformance tests is that yes there are 0% > failures but when you check you discover its 0% failures on virtual > machines. Failures on real hardware under XP can reach as high as 6% with > peaks greater than that. Win

Re: mp3 update

2009-08-13 Thread Austin English
On Thu, Aug 13, 2009 at 1:41 PM, Juan Lang wrote: >> All the more reason to use the existing libmpg123 instead of trying to >> maintain our own version, IMO. > > Aric already explained that we can't:  it doesn't exist on the Mac. Not to nitpick, but if that's the reason for bundling libmpg, there

Re: mp3 update

2009-08-12 Thread Austin English
On Wed, Aug 12, 2009 at 4:09 PM, Juan Lang wrote: >> Right. Is there an particular reason we can't dlopen the native library? > > I don't think dlopen is preferable, quite the opposite in fact. > dlopen leads to a situation in which Wine has features that work on > the build system, but not at runt

Re: winetricks, dotnet3 and winsxs

2009-08-10 Thread Austin English
On Mon, Aug 10, 2009 at 9:37 AM, Hin-Tak Leung wrote: > Hiya, > > I have tried playing with the new dotnet3 functionality. Actually even with a > clean new wineprefix I haven't been able to get dotnet3 finishing installing > - it hangs for a lonh time doing nothing much but the last it does is ng

Re: kernel32/nls/winerr: Add Russian translation [try 3]

2009-08-10 Thread Austin English
On Mon, Aug 10, 2009 at 3:35 AM, Dmitry Timoshkov wrote: > "Austin English" wrote: > >> Perhaps I'm ignorant, but I don't see how it's not a translation. > > It is not, it's enough to skim over first 10 strings to figure out that. > If there is a

Re: kernel32/nls/winerr: Add Russian translation [try 3]

2009-08-10 Thread Austin English
On Mon, Aug 10, 2009 at 3:00 AM, Dmitry Timoshkov wrote: > "Austin English" wrote: > >> > I think it's been said enough about your "translation". I'm not >> > going to spend more time commenting on it, I hope Alexandre will >> > ig

Re: kernel32/nls/winerr: Add Russian translation [try 3]

2009-08-10 Thread Austin English
On Mon, Aug 10, 2009 at 2:30 AM, Dmitry Timoshkov wrote: > "Vladimir Pankratov" wrote: > >> Added Russian translation. >> >> Changed files: >> dlls/kernel32/nls/winerr_rus.mc > > I think it's been said enough about your "translation". I'm not > going to spend more time commenting on it, I hope Ale

Re: Debugging tools

2009-08-09 Thread Austin English
On Sun, Aug 9, 2009 at 10:50 PM, Alexandros Dermenakis wrote: > Hi, > > I would like some help about which tools to use for editing code, searching > through the source files etc. also, is there a way to import all the source > code in Kdevelop? To get the source: http://wiki.winehq.org/GitWine f

Re: Wine and XShm support

2009-08-09 Thread Austin English
On Sun, Aug 9, 2009 at 3:51 PM, Roderick Colenbrander wrote: > Hi, > > As of Wine 1.1.27, XShm support was added for the creation of > DIBSECTIONs in winex11.drv. The use of XShm more closely matches to > the Windows behavior and can also bring more performance. > > An Nvidia developer noticed this

Re: dotnet30 and winetricks

2009-08-08 Thread Austin English
On Sat, Aug 8, 2009 at 1:08 PM, Ken Sharp wrote: > > > Dan Kegel wrote: >> >> Thanks to AF and Hans (and Codeweavers), there's now a short recipe for >> installing .net 30.  I've added it to winetricks.  Give it a shot and >> let me know if it works for you... >> > > Installs nice here, but don't h

Re: DxDiag Demo Patch

2009-08-06 Thread Austin English
On Fri, Mar 27, 2009 at 6:33 AM, Henri Verbeet wrote: > 2009/3/25 Allen Hair : >> Attached is a patch that will add our code to the source tree. This >> patch is not meant to be >> committed, but should provide a demonstration of the application so >> far. Any feedback would be >> appreciated, I wi

Re: Interesting find with cppcheck..

2009-08-04 Thread Austin English
On Tue, Aug 4, 2009 at 2:07 PM, Juan Lang wrote: >> If the group wants I can run this daily when I run wine test as well.. >> and post it here  just let me know > > Probably not.  Most of the remaining leaks are in the tests or the > tools.  Since these are short-lived programs, the leaks will

Re: Interesting find with cppcheck..

2009-08-04 Thread Austin English
On Tue, Aug 4, 2009 at 1:00 PM, chris ahrendt wrote: > > I was working on something else and using cppcheck to make sure I was > not having a memory leak and so forth and decided to try it on wine > here is what is the results of the wine git tree : > > [../wine-git/dlls/crypt32/rootstore.c:346]: (

Re: programs/start: handle /B & /I options

2009-08-03 Thread Austin English
2009/8/3 Frédéric Delanoy : > Well, IMHO bug 10912 should stay open since /B option is not really > supported, but rather silently ignored. > > Frédéric > Please bottom post on wine mailing lists. Of course implementing these (and other) options would be good. But for the purposes of that bug rep

Re: RFC XRender add support for dibsections in more color depths

2009-08-01 Thread Austin English
On Fri, Jul 31, 2009 at 3:51 AM, Roderick Colenbrander wrote: > On Fri, Jul 31, 2009 at 9:25 AM, Austin English > wrote: >> On Thu, Jul 23, 2009 at 3:51 PM, Roderick >> Colenbrander wrote: >>> Hi, >>> >>> For some weeks I have been working on moving

Re: How far away are we from .net 3.0 install working?

2009-07-31 Thread Austin English
On Fri, Jul 31, 2009 at 5:29 PM, Dan Kegel wrote: > http://www.winehq.org/pipermail/wine-patches/2009-June/074701.html > says that the offline installer for .net 3.0 works > fine with that one patch, but it didn't seem to work > when I tried it.   Anyone know what the story is? The AppDB has a pre

Re: ntdll: For Darwin/Mac OS X, use legacy getdirentries if 64-bit inodes enabled.

2009-07-31 Thread Austin English
On Fri, Jul 31, 2009 at 4:25 PM, Ken Thomases wrote: > > Fixes building on Snow Leopard. > --- >  dlls/ntdll/directory.c |   30 ++ >  1 files changed, 30 insertions(+), 0 deletions(-) FWIW, NetBSD has a similar bug (http://bugs.winehq.org/show_bug.cgi?id=18166), but AJ

Re: New Wine Gecko 1.0.0 RC

2009-07-31 Thread Austin English
On Wed, Jul 29, 2009 at 10:01 AM, Jacek Caban wrote: > Hi, > > It's time for the new Wine Gecko package release. I've prepared a new > package based on Mozilla code a bit newer than Firefox 3.5 and my fixes > (most of them are on their way to mainstream Mozilla repository). This > release fixes a f

Re: RFC XRender add support for dibsections in more color depths

2009-07-31 Thread Austin English
On Thu, Jul 23, 2009 at 3:51 PM, Roderick Colenbrander wrote: > Hi, > > For some weeks I have been working on moving more 2D rendering to > XRender. XRender has three advantages for Wine. First of all it allows > us to perform more rendering operations using X which we previously > did using a comb

Re: RFC XRender add support for dibsections in more color depths

2009-07-31 Thread Austin English
On Wed, Jul 29, 2009 at 3:18 PM, Roderick Colenbrander wrote: > Hi Reece, > > The only thing required is a git version of Wine and XRender libraries > on your system. After that any app can be tested. On decent drivers > like Nvidia you'll notice heavily improved 2D performance (e.g. useful > for t

Re: [6/6] hnetcfg: Register interfaces.

2009-07-30 Thread Austin English
On Thu, Jul 30, 2009 at 10:36 AM, Hans Leidekker wrote: > On Thursday 30 July 2009 05:17:07 pm you wrote: > >> What is this series for, if you don't mind my asking? >> >> The iTunes installer/other applications looking for the XP firewall? > > Yes, this brings the iTunes installer to the next bug ;

Re: [Wine] Sandia Studies Botnets In 1M OS Digital Petri Dish

2009-07-29 Thread Austin English
On Wed, Jul 29, 2009 at 10:26 AM, Juan Lang wrote: >> Well, Wine is free for them to use as they wish, and the only company >> "sponsoring" Wine is Codeweavers ... > > The first part of your statement is true, but the second part of your > statement omits at least Google, Etersoft, and probably oth

Re: Cleaning up the winehq.org website

2009-07-27 Thread Austin English
On Mon, Jul 27, 2009 at 2:08 AM, Scott Ritchie wrote: > 2) Remove the unmaintained porting status page: > http://www.winehq.org/status/porting  - I don't believe this data is > useful to anyone, and if it is it should be imported into the wiki so it > can actually be updated. Not sure if it's usef

Re: Help resources for wine-users mailing list

2009-07-26 Thread Austin English
2009/7/26 Frédéric Delanoy : > Over and over, I see help requests on wine-users with responses like > "installed latest wine", "read FAQ section x.y", ... > > Wouldn't it be useful to send a regular reminder (like every month, and on > subscription)? > This would contain: > - how to upgrade to la

Re: [2/2] msxml3: Register Missing Components

2009-07-25 Thread Austin English
On Sat, Jul 25, 2009 at 8:14 PM, Pat Renton wrote: Forgot the patch. -- -Austin

Re: Wine on cygwin

2009-07-25 Thread Austin English
On Sat, Jul 25, 2009 at 12:36 PM, dominik wrote: > Hi all, > I've just tried to build wine on cygwin in order to build the test suite in > order to maybe find out why some tests fail on my machine. > > configure runs reasonably well, but when the first dll is being built, hell > breaks loose. > > T

Re: ODBC Databases: Jet/Access success

2009-07-23 Thread Austin English
On Thu, Jul 23, 2009 at 11:04 PM, Mike Kaplinskiy wrote: > On Thu, Jul 23, 2009 at 10:32 PM, Juan Lang wrote: >> Hey Barry, >> >> this was a handy writeup.  Perhaps you could add it to the wiki? >> Here's a page that you might add it to: >> http://wiki.winehq.org/NativeOdbc >> >> The user guide sho

Re: RFC XRender add support for dibsections in more color depths

2009-07-23 Thread Austin English
On Thu, Jul 23, 2009 at 3:51 PM, Roderick Colenbrander wrote: > Hi, > > For some weeks I have been working on moving more 2D rendering to > XRender. XRender has three advantages for Wine. First of all it allows > us to perform more rendering operations using X which we previously > did using a comb

Re: appinstall update: Adobe Photoshop CS 2 installer test added

2009-07-19 Thread Austin English
On Sat, Jul 18, 2009 at 11:22 PM, Austin English wrote: > P.S., I'm working on some instructions for writing new tests, that > I'll put on the wiki (later tomorrow-ish). While the testing framework > is mostly complete, it's still pretty alpha/beta, and stuff may >

appinstall update: Adobe Photoshop CS 2 installer test added

2009-07-18 Thread Austin English
For those interested, I've added a test for the Photoshop CS 2 demo installer (http://code.google.com/p/winezeug/source/detail?r=580 / http://winezeug.googlecode.com/svn/trunk/appinstall/scripts/photoshopcs2.ahk). Currently, the test only installs the demo and verifies the install. I'll add tests t

Re: How to expanding environmental variables?

2009-07-18 Thread Austin English
On Fri, Jul 17, 2009 at 7:22 PM, Nicolas Le Cam wrote: > 2009/7/18 Austin English : >> Howdy all, >> >> I'm working on a automated test for Photoshop CS 2. As before, I'm >> trying to do so in a portable way, so it works on various >> locales/windows ve

Re: Doing better than barely keeping up with bug reports - Bug Daythis Monday (July 20)

2009-07-17 Thread Austin English
On Fri, Jul 17, 2009 at 10:28 PM, Dmitry Timoshkov wrote: > "Scott Ritchie" wrote: > >> I'll blog about this and post a few forum threads as well.  I wanted to >> see how wine-devel would act last night before I went to sleep - suffice >> to say it's already interesting! > > I think it's a matter

How to expanding environmental variables?

2009-07-17 Thread Austin English
Howdy all, I'm working on a automated test for Photoshop CS 2. As before, I'm trying to do so in a portable way, so it works on various locales/windows versions (or as much as possible). Because of wine/windows differences, I need a portable way to get to the shared documents folder, e.g.,: Window

Re: Doing better than barely keeping up with bug reports - Bug Day this Monday (July 20)

2009-07-17 Thread Austin English
On Fri, Jul 17, 2009 at 10:28 AM, Rosanne DiMesio wrote: > I suppose I qualify as one of those "non developer volunteers" being targeted > for this, and my reaction is the same as Dmitry's. I've been doing exactly > what the instructions on the wiki page ask for, off and on at my own > convenien

Re: suggestions about MacOS DYLD_FALLBACK_LIBRARY_PATH patch

2009-07-16 Thread Austin English
On Thu, Jul 16, 2009 at 10:52 AM, Steven Edwards wrote: > On Thu, Jul 16, 2009 at 11:25 AM, Juan Lang wrote: >> Note that I never said it was the user's fault, but that it's a >> configuration error.  In my opinion the proper place to fix this is in >> the library installation itself, or in the dis

Re: comctl32: Explicitly initialize visible order of a newly added item, force visible order recalculation on redraw.

2009-07-16 Thread Austin English
On Thu, Jul 16, 2009 at 3:34 AM, Dmitry Timoshkov wrote: > This patch should fix the regression reported in the bug 19338. > --- >  dlls/comctl32/treeview.c |    4 ++-- >  1 files changed, 2 insertions(+), 2 deletions(-) Can you possibly add a testcase for this to prevent further regressions? --

Re: suggestions about MacOS DYLD_FALLBACK_LIBRARY_PATH patch

2009-07-14 Thread Austin English
On Tue, Jul 14, 2009 at 10:04 PM, James McKenzie wrote: > Neither.  We need to provide an Applescript starter that sets several > variables.  This is what the OpenOffice.org project decided to do.  This > would only exist on the MacOSX version of Wine, not Linux.  It is not > 'rocket science' to ma

Re: Wine Appdb is down

2009-07-14 Thread Austin English
On Tue, Jul 14, 2009 at 9:22 PM, nn wrote: > > Hi, > Wine Appdb is down > > -- >      Warning: mysql_connect() [function.mysql-connect]: Can't connect to > local MySQL server through socket '/var/run/mysqld/mysqld.sock' (2) in > /home/winehq/opt/appdb/include/query

Re: wordpad: Fix the English NEUTRAL translation.

2009-07-14 Thread Austin English
On Tue, Jul 14, 2009 at 6:45 PM, Michael Stefaniuc wrote: > --- >  programs/wordpad/En.rc |   12 +++- >  1 files changed, 11 insertions(+), 1 deletions(-) > > diff --git a/programs/wordpad/En.rc b/programs/wordpad/En.rc > index fe92de7..1e1fd2e 100644 > --- a/programs/wordpad/En.rc > +++ b/

Re: why is Kronenberg's Wine/Mac work blacklisted on winehq?

2009-07-13 Thread Austin English
On Fri, Jun 26, 2009 at 5:00 AM, Roderick Colenbrander wrote: > I would be willing to assist with any Mac issues as I would need a > LGPL'ed version of Wine on OSX myself. I'm assisting bringing a > university program to Linux/Mac using Wine and for that I need decent > Mac support. Darwine set som

Re: Supported applications?

2009-07-13 Thread Austin English
On Sun, Jul 12, 2009 at 9:22 PM, Dan Kegel wrote: > Austin wrote: >>Looking around the wiki/website, I can't find anywhere where the >>'Supported applications' are listed (Powerpoint/Word/Excel viewer and >>Adobe Photoshop CS 2, if I remember correctly). > > Maybe you're thinking of > http://wiki.w

Supported applications?

2009-07-12 Thread Austin English
Looking around the wiki/website, I can't find anywhere where the 'Supported applications' are listed (Powerpoint/Word/Excel viewer and Adobe Photoshop CS 2, if I remember correctly). Are these the only applications that are being targeted for 1.2? Should others be added? Mozilla Firefox would be a

Re: 2/2 winex11: add XRender based GetSrcAreaStretch [with patch]

2009-07-12 Thread Austin English
-bit paths pass through my code yet). >> >> Roderick >> >> On Sun, Jul 12, 2009 at 8:36 PM, Austin English >> wrote: >>> On Sat, Jul 11, 2009 at 2:33 PM, Roderick >>> Colenbrander wrote: >>>> This time with patch. >>>> >&g

Re: 2/2 winex11: add XRender based GetSrcAreaStretch [with patch]

2009-07-12 Thread Austin English
On Sat, Jul 11, 2009 at 2:33 PM, Roderick Colenbrander wrote: > This time with patch. > > Roderick > > On Sat, Jul 11, 2009 at 9:08 PM, Roderick > Colenbrander wrote: >> Hi, >> >> This patch adds a XRender based GetSrcAreaStretch. A lot of work is >> offloaded to X (less round trips are needed) and

Re: winequartz.drv Mac OS X UI discontinued?

2009-07-11 Thread Austin English
On Sat, Jul 11, 2009 at 4:45 PM, James McKenzie wrote: > Austin English wrote: >> On Sat, Jul 11, 2009 at 4:21 PM, James >> McKenzie wrote: >> >>> Adam Strzelecki wrote: >>> >>>> I really don't understand why Obj-C is treated as evil, eve

Re: winequartz.drv Mac OS X UI discontinued?

2009-07-11 Thread Austin English
that its doggy idea to force some >> Obj-C on Mac, while other part of the World speak C/C++, but now I >> know that Obj-C is what defined OSX actually and way the whole system >> works. So wondering who of Obj-C dislikers at Wine HQ really uses Mac >> and really did any of

Re: 2/2 winex11: add XRender based GetSrcAreaStretch

2009-07-11 Thread Austin English
On Sat, Jul 11, 2009 at 2:08 PM, Roderick Colenbrander wrote: > Hi, > > This patch adds a XRender based GetSrcAreaStretch. A lot of work is > offloaded to X (less round trips are needed) and it can take advantage > of hardware acceleration. On Nvidia and AMD drivers blt performance > has improved b

Appinstall results down for a few days

2009-07-11 Thread Austin English
My webhost had a security breach, so ssh/ftp is currently disabled. I've been monitoring the results locally, but in case anyone was curious why there haven't been new results in a couple days, now you know. -- -Austin

Re: Obsolete print dialogs in comdlg32?

2009-07-08 Thread Austin English
2009/7/8 Frédéric Delanoy : > Hi, > > During update of translation of comdlg32 dialogs, I saw that some > printing dialogs seem broken, namely PRINT and PRINT_SETUP, > while PRINT32 and PRINT32_SETUP look OK. > > I checked some programs and the PRINT[_SETUP] dialogs don't seem to be > used (a casua

Re: [Wine] Tmax Window(a propietary OS) using Wine?

2009-07-07 Thread Austin English
On Tue, Jul 7, 2009 at 9:43 PM, Ben Klein wrote: > 2009/7/8 Austin English : >> -- Forwarded message -- >> From: nengad24 >> -- snip -- >> Yesterday a korean company has released a new OS which is compatible >> with MS Windows Apps. >> --

Re: winhttp(0/5): add preliminary IPv6 support

2009-07-07 Thread Austin English
On Tue, Jul 7, 2009 at 4:06 PM, Juan Lang wrote: > Hi, this small patch series adds preliminary IPv6 support to winhttp. > I say it's preliminary because 1) it's not well tested, and 2) it > doesn't attempt to parse IPv6-specific address components such as the > scope ID.  Mainly I wanted to get ri

Fwd: [Wine] Tmax Window(a propietary OS) using Wine?

2009-07-07 Thread Austin English
-- Forwarded message -- From: nengad24 Date: Tue, Jul 7, 2009 at 5:54 AM Subject: [Wine] Tmax Window(a propietary OS) using Wine? To: wine-us...@winehq.org Hi, Im posting here the next doubt: Yesterday a korean company has released a new OS which is compatible with MS Windows A

Re: Can resources and translations match Windows?

2009-07-07 Thread Austin English
On Tue, Jul 7, 2009 at 12:46 AM, Paul Vriens wrote: > Hi, > > This question came to me when I saw Austin's patch about adjusting notepad > resources to more closely match XP. > > Is there some kind of copyright on the resources? Are we allowed to use the > same strings or should it always be our ow

Re: What's with winetest-latest?

2009-07-06 Thread Austin English
On Mon, Jul 6, 2009 at 11:56 AM, Aurimas Fišeras wrote: > I get this Error: "Can't enumerate test files: 1813". And from > test.winehq.org looks like everyone is getting an error. Probably related to: http://source.winehq.org/git/wine.git/?a=commitdiff;h=0dc951694bfeceebeacbb4148e66bb663ba87d1c -

Re: "make test" redux

2009-07-05 Thread Austin English
On Mon, Jul 6, 2009 at 1:15 AM, Paul Vriens wrote: > Austin English wrote: >> >> On Sat, Jul 4, 2009 at 10:48 AM, Dan Kegel wrote: >>> >>> We've had a test suite for six or so years now, and we keep >>> getting closer to having it pass reliably, but

Re: "make test" redux

2009-07-05 Thread Austin English
On Sat, Jul 4, 2009 at 10:48 AM, Dan Kegel wrote: > We've had a test suite for six or so years now, and we keep > getting closer to having it pass reliably, but we're still not quite there. > I see from http://test.winehq.org that fifteen tests fail on at > least one machine. > > There are several

<    1   2   3   4   5   6   7   8   9   10   >