Re: [CMake] MinGW and cmake issues...

2008-05-18 Thread Werner Smekal
Hi Phil, GCC version is this: S:\software\packages\utility\buildgcc -v Using built-in specs. Target: i386-pc-mingw32 Configured with: ../gcc-4.3.0/configure --prefix=/mingw --disable-nls [...] --enable-concept-checks --enable-shared Thread model: win32 gcc version 4.3.0 (GCC) you are using

[CMake] Updated: CMake 2.6.0-1

2008-05-18 Thread Bill Hoffman
CMake CMake 2.6.0-1 is now available on Cygwin mirrors. There has been a new release of the official cmake (2.6.0-1). This is a major release from 2.4.8 to 2.4.6.0 Changes in CMake 2.6.0 - Fix links in generated documentation - Fix for FindQt and some mac frameworks - Fix for ctest to report

Re: [CMake] CMake Error: Unable to link function recv

2008-05-18 Thread Maik Beckmann
Miguel A. Figueroa-Villanueva [EMAIL PROTECTED] writes: Hello, I recently updated my cmake installation from cvs and now I can't get it to configure for 'Unix Makefiles'. I am now getting this error: ... Performing Test curl_cv_recv Performing Test curl_cv_recv - Failed CMake Error:

[CMake] ifort and msys == trouble

2008-05-18 Thread Maik Beckmann
Hello List, Today I found the reason why the MSYS generator fails with ifort. This line ifort -fpp test.f works at the standard cmd, the cygwin shell and msys shell. But this one ifort /fpp test.f fails when doing it in msys, because /fpp is considered as an file and ifort wants to

Re: [CMake] ifort and msys == trouble

2008-05-18 Thread Stefan Buschmann
Hi, I don't know ifort, but I had the same problem with Makefiles and MSYS a while ago. Since it works with cygwin I assume ifort knows cygwin and handles the forward slash right. Does anyone know if ifort has a flag or environment variable name to set which tells ifort its working on

Re: [CMake] ifort and msys == trouble

2008-05-18 Thread Maik Beckmann
Am Sonntag 18 Mai 2008 22:35:53 schrieb Stefan Buschmann: Hi, I don't know ifort, but I had the same problem with Makefiles and MSYS a while ago. Since it works with cygwin I assume ifort knows cygwin and handles the forward slash right. Does anyone know if ifort has a flag or

Re: [CMake] cmake 2.6.0, breakages

2008-05-18 Thread Dmitry Marakasov
* Andreas Pakulat ([EMAIL PROTECTED]) wrote: # depends set(SDL_CONFIG sdl-config CACHE STRING Path to sdl-config script) Thats broken by design, what if sdl-config is not in my PATH? FIND_PACKAGE(SDL REQUIRED) FIND_PACKAGE(SDL_image REQUIRED) FIND_PACKAGE(SDL_mixer REQUIRED) And why

Re: [CMake] [PATCH] FindSubversion.cmake Windows fixes

2008-05-18 Thread Alexander Neundorf
On Saturday 17 May 2008, Tanguy Krotoff wrote: Hello Another patch :) (against CMake-2.6.0) Issues: - SET(ENV{LC_ALL} C) does not work under Windows: it should be done each time the macro Subversion_WC_INFO is run. - svn log -r takes too long So I've splitted macro Subversion_WC_INFO

Re: [CMake] [PATCH] FindQt4.cmake qt4_automoc improvements

2008-05-18 Thread Alexander Neundorf
On Saturday 17 May 2008, Tanguy Krotoff wrote: Hello I've noticed some lake of features inside FindQt4.cmake qt4_automoc macro This patch intend to fix this. (patch against CMake 2.6.0) How current qt4_automoc works: Looks for files that contain string: #include *.moc Issues: - With

Re: [CMake] ifort and msys == trouble

2008-05-18 Thread Maik Beckmann
re-post: did send it Bill only, sorry. Am Montag 19 Mai 2008 00:29:43 schrieb Bill Hoffman: Perhaps it is better to use a make that does not do this.  mingw-make, cygwin make, native win32 gmake.  I am not sure you can completely avoid / type arguments in the entire tool chain for windows.