Re: Compilation error with latest wine

2010-11-13 Thread Scott Ritchie
On 11/13/2010 02:40 PM, Reece Dunn wrote: > On 13 November 2010 22:08, Scott Ritchie wrote: >> Works for me: >> >> http://launchpadlibrarian.net/59077812/buildlog_ubuntu-maverick-amd64.wine1.3_1.3.7-0ubuntu1~maverickppa1_BUILDING.txt.gz >> http://launchpadlibrarian.net/59077619/buildlog_ubuntu-mav

Re: Compilation error with latest wine

2010-11-13 Thread Robert Kim App and Facebook Marketing
Reece, Thanks! Scott.. .please do let us know if this works out or if there's another bug... I'm dealing with the same issue >> >> make[2]: Entering directory `/build/buildd/wine1.3-1.3.7/dlls/atl' >> ../../tools/makedep  -C. -S../.. -T../..  atl_ax.c atl_main.c >> registrar.c rsrc.rc >> make[2]

Re: Compilation error with latest wine

2010-11-13 Thread Reece Dunn
On 13 November 2010 22:08, Scott Ritchie wrote: > Works for me: > > http://launchpadlibrarian.net/59077812/buildlog_ubuntu-maverick-amd64.wine1.3_1.3.7-0ubuntu1~maverickppa1_BUILDING.txt.gz > http://launchpadlibrarian.net/59077619/buildlog_ubuntu-maverick-i386.wine1.3_1.3.7-0ubuntu1~maverickppa1_B

Re: Compilation error with latest wine

2010-11-13 Thread Scott Ritchie
On 11/13/2010 02:25 AM, Luca Bennati wrote: > I get this: > registrar.c: In function ‘DllGetClassObject’: > registrar.c:747:18: error: ‘CLSID_Registrar’ undeclared (first use in > this function) > registrar.c:747:18: note: each undeclared identifier is reported only > once for each function it appe

TestBot IPv6 enabled

2010-11-13 Thread Greg Geldorp
Hi, All TestBot VMs (with the exception of the Win9x ones) now have IPv6 connectivity. I was surprised that there was even a IPv6 stack available for NT4, it was produced by Microsoft Research. The VMs are (and always have been) behind a IPv4 NAT router. That same router now acts as a IPv6 rout

Re: widl: Fix for typelib generation when unaligned access to memory is not allowed

2010-11-13 Thread Marcus Meissner
On Sat, Nov 13, 2010 at 07:02:02PM +0100, André Hentschel wrote: > caused a "Bus error" on sparc > --- > tools/widl/write_msft.c |6 +- > 1 files changed, 5 insertions(+), 1 deletions(-) > > diff --git a/tools/widl/write_msft.c b/tools/widl/write_msft.c > index da4eb25..5175b73 100644 > -

Re: [PATCH 3/4] shell32: Some events are sent twice in SHChangeNotify

2010-11-13 Thread Andrew Eikum
Obviously this needs some work yet. 1, 2, and 4 should work fine without this patch. On 11/12/2010 11:29 PM, Marvin wrote: 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

Re: [try 2] Test for window messages of a property sheet with custom dialog proc (bug 12104)

2010-11-13 Thread Paul Vriens
On 11/13/2010 10:59 AM, Bernhard Übelacker wrote: When I run both tests as single files from a "make crosstest" I was not able to reproduce neither the explorer crash or the explorer windows not opening. I didn't see a crash but maybe this is because I'm testing on W2K. I can still reliably ge

Re: regedit: add a manpage

2010-11-13 Thread François Wendling
On Fri, Nov 12, 2010 at 07:52:24PM +, Austin English wrote: > On Fri, Nov 12, 2...@7:29 PM, Alexandre Julliard wrote: > > Austin English writes: > > > >> I wasn't worried about the patches being under my name. I'll email the > >> author and ask him to submit them, but I'm not holding my breat

Re: Compilation error with latest wine

2010-11-13 Thread Luca Bennati
2010/11/13 Paul Vriens > Hi, > > rm dlls/atl/atliface.h > > Cheers, > > Paul > On Nov 13, 2010 12:00 PM, "Joel Holdsworth" > wrote: > > Hmm, > > > > Looks like it was caused by commit > > 9c4432f69d91007d02c52c50ba565ca795f44765, I think the CLSID isn't being > > included properly. Probably easy

Re: Compilation error with latest wine

2010-11-13 Thread Paul Vriens
Hi, rm dlls/atl/atliface.h Cheers, Paul On Nov 13, 2010 12:00 PM, "Joel Holdsworth" wrote: > Hmm, > > Looks like it was caused by commit > 9c4432f69d91007d02c52c50ba565ca795f44765, I think the CLSID isn't being > included properly. Probably easy to fix. > > Joel > > >

Re: Compilation error with latest wine

2010-11-13 Thread Joel Holdsworth
Hmm, Looks like it was caused by commit 9c4432f69d91007d02c52c50ba565ca795f44765, I think the CLSID isn't being included properly. Probably easy to fix. Joel

Re: Compilation error with latest wine

2010-11-13 Thread Joel Holdsworth
+1 I have the same issue in Ubuntu 10.10 Joel

Compilation error with latest wine

2010-11-13 Thread Luca Bennati
I get this: registrar.c: In function ‘DllGetClassObject’: registrar.c:747:18: error: ‘CLSID_Registrar’ undeclared (first use in this function) registrar.c:747:18: note: each undeclared identifier is reported only once for each function it appears in registrar.c: In function ‘do_register_server’: re

Re: loader: On Mac, reserve the process's original thread for the frameworks. (try 2)

2010-11-13 Thread Alexandre Julliard
Ken Thomases writes: > I suppose we could put a loop around the exec call, such that we sleep > and retry if it returns ENOTSUP. However, if terminate_main_thread > was unsuccessful, or if ENOTSUP can occur for other reasons, that > might be an infinite loop. That would be preferable. To avoid

Re: [try 2] Test for window messages of a property sheet with custom dialog proc (bug 12104)

2010-11-13 Thread Bernhard Übelacker
Am Donnerstag 11 November 2010 schrieben Sie: > On 11/06/2010 11:16 AM, Bernhard Übelacker wrote: > > Hello, > > this patch checks for correct arrival of messages to a subclassed property > > page. > > > > For this bug http://bugs.winehq.org/show_bug.cgi?id=12104 specifically > > the first WM_SIZE

Re: [PATCH 2/2] ntdll/tests: Added qsort_s tests. (try 5)

2010-11-13 Thread Marvin
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=7037 Your paranoid android.