Re: [cmake-developers] cmake-2.8.5 build error on the MinGW/MSYS/wine platform

2011-09-16 Thread Alan W. Irwin
Hi Clint: There are questions for you below concerning where system header information in the Wine environment is located. On 2011-09-15 14:34-0700 Alan W. Irwin wrote: Of course, Wine _might_ be at fault here for not #defining _SSIZE_T_DEFINED when ssize_t is typedefed. But is that a

Re: [cmake-developers] cmake-2.8.5 build error on the MinGW/MSYS/wine platform

2011-09-16 Thread Clinton Stimpson
First off, I want to be sure we understand that you are using wine only to run windows binaries? Correct? Wine can also be used to compile windows code into linux binaries (for which one would use winegcc in place of the linux gcc), but that doesn't appear to be the case here. If that's the

Re: [cmake-developers] Some advice

2011-09-16 Thread James Bigler
On Fri, Sep 16, 2011 at 5:11 AM, Alexander Neundorf neund...@kde.orgwrote: On Thursday, September 15, 2011 10:22:52 PM James Bigler wrote: On Mon, Sep 12, 2011 at 3:35 PM, James Bigler jamesbig...@gmail.com wrote: I need some advice on how to fix a problem I'm having with files with the

Re: [cmake-developers] Some advice

2011-09-16 Thread Brad King
On 9/16/2011 12:22 PM, James Bigler wrote: Thanks for the response Alex, but that's not quite it. From my experiments, CMake only puts object files in sub directories (below the target sub-directory) when it detects the clash (see the original email). I also have clashes on file names and

Re: [cmake-developers] cmake-2.8.5 build error on the MinGW/MSYS/wine platform

2011-09-16 Thread David Cole
The information in this CMake bug tracker issue suggests that this is *completely* a MinGW / MSYS regression, and not really a cmake issue... http://public.kitware.com/Bug/view.php?id=12418 According to the latest note there, just added: With mingw 4.5.2 it works, but mingw 4.6.1 fails with

Re: [cmake-developers] cmake-2.8.5 build error on the MinGW/MSYS/wine platform

2011-09-16 Thread Brad King
On 9/16/2011 2:48 PM, David Cole wrote: At a minimum, I would recommend taking this discussion to the libarchive mailing list over at http://code.google.com/p/libarchive/ and asking why the header file and source file use inconsistent declarations. Perhaps there's a legitimate reason, or

Re: [cmake-developers] cmake-2.8.5 build error on the MinGW/MSYS/wine platform

2011-09-16 Thread Alan W. Irwin
On 2011-09-16 14:48-0400 David Cole wrote: The information in this CMake bug tracker issue suggests that this is *completely* a MinGW / MSYS regression, and not really a cmake issue... http://public.kitware.com/Bug/view.php?id=12418 According to the latest note there, just added: With

Re: [cmake-developers] cmake-2.8.5 build error on the MinGW/MSYS/wine platform

2011-09-16 Thread Brad King
On 9/16/2011 4:35 PM, Brad King wrote: Try this patch: diff --git a/Utilities/cmlibarchive/libarchive/archive.h b/Utilities/cmlibarchive/libarchive/archive.h index 9b918a8..b2bb829 100644 --- a/Utilities/cmlibarchive/libarchive/archive.h +++ b/Utilities/cmlibarchive/libarchive/archive.h

Re: [cmake-developers] cmake-2.8.5 build error on the MinGW/MSYS/wine platform

2011-09-16 Thread Brad King
On 9/16/2011 4:40 PM, Brad King wrote: As expected upstream libarchive already fixed this: http://code.google.com/p/libarchive/source/detail?r=3649 http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8dfe74c3 -Brad ___ cmake-developers mailing list

Re: [cmake-developers] cmake-2.8.5 build error on the MinGW/MSYS/wine platform

2011-09-16 Thread Alan W. Irwin
On 2011-09-16 16:46-0400 Brad King wrote: On 9/16/2011 4:40 PM, Brad King wrote: As expected upstream libarchive already fixed this: http://code.google.com/p/libarchive/source/detail?r=3649 http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=8dfe74c3 Hi Brad, Bill, and Dave: As