[cmake-developers] WiX generator and generic file IDs

2013-10-09 Thread Ådne Hovda
Source=lib/lib1.lib KeyPath=yes/ /Component /DirectoryRef DirectoryRef Id=share.man.man3 Component Id=share.man.man3.prog.3 Guid=* Win64=$(var.Win64) File Id=share.man.man3.prog.3 Source=share/man/man3/prog.3 KeyPath=yes/ /Component /DirectoryRef -- Best regards, Ådne Hovda -- Powered

Re: [cmake-developers] Deterministic identifiers in CPack WiX generator

2013-10-10 Thread Ådne Hovda
Hi Nils On 10/10/2013 9:14 PM, Nils Gladitz wrote: I just pushed my first branch wix-deterministic-ids to the topic stage Fantastic effort! I chose to generate identifiers after the following format: CM_ID_TYPESCHEME_TYPE_ID_CONTENT(_COUNTER) I think the logic is sound, and the hash is

[cmake-developers] CMake adds libgcc_eh.a to the linker line on AIX

2014-02-07 Thread Ådne Hovda
. Is this expected behavior? Is libgcc_eh.a really needed here or is there a way to avoid it? Or should CMake also add libsupc++? Best Regards, Ådne Hovda -- Powered by www.kitware.com Visit other Kitware open-source projects at http://www.kitware.com/opensource/opensource.html Please keep messages

Re: [cmake-developers] CMake adds libgcc_eh.a to the linker line on AIX

2014-02-07 Thread Ådne Hovda
On 2/7/2014 3:33 PM, Brad King wrote: like CMAKE_C_IMPLICIT_LINK_LIBRARIES. Does libgcc_eh.a appear in any of them? You are right, it's there. If I run powerpc-ibm-aix5.3.0.0-gcc /opt/cmake/share/cmake-2.8/Modules/CMakeCCompilerABI.c -v I see libgcc_eh.as among collect2's args. For

[cmake-developers] Remove check for source files in add_library()

2014-06-27 Thread Ådne Hovda
I guess there are other implications I have not though of as well? -- Best regards, Ådne Hovda -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more

[cmake-developers] HP-UX Curses questions

2014-11-17 Thread Ådne Hovda
on that platform right now. Ådne Hovda diff --git a/Modules/FindCurses.cmake b/Modules/FindCurses.cmake index a21ca89..f94bd09 100644 --- a/Modules/FindCurses.cmake +++ b/Modules/FindCurses.cmake @@ -179,11 +179,6 @@ if(NOT DEFINED CURSES_HAVE_CURSES_H) endif() endif

Re: [cmake-developers] HP-UX Curses questions

2014-11-18 Thread Ådne Hovda
-ux11.11pa, hp-ux11.23ia and Linux in both 32 and 64 bit mode. Also, I don't have a Mac to test on. I've pushed my changes to https://github.com/aadnehovda/CMake/tree/curses-hpux-fix and can create a pull request if you think this is okay. Best regards, Ådne Hovda -- Powered by www.kitware.com

Re: [cmake-developers] HP-UX Curses questions

2014-11-18 Thread Ådne Hovda
header so maybe it could actually work. Ådne Hovda -- Powered by www.kitware.com Please keep messages on-topic and check the CMake FAQ at: http://www.cmake.org/Wiki/CMake_FAQ Kitware offers various services to support the CMake community. For more information on each offering, please visit

Re: [cmake-developers] HP-UX Curses questions

2014-11-18 Thread Ådne Hovda
in a core dump). Nothing critical, obviously, but maybe distro packagers find it somewhat useful. Best regards, Ådne Hovda From 9c18272fd576a28e35e0913e3cb99c08b9fdd8bb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85dne=20Hovda?= aho...@openit.com Date: Tue, 18 Nov 2014 21:47:02 +0100 Subject: [PATCH

[cmake-developers] Patch: cmjsoncpp - missing isfinite on AIX 5.1 and HP-UX 11.23

2015-03-31 Thread Ådne Hovda
Hi Applying the attached patch fixes compilation with GCC on AIX 5.1 and HP-UX for me. Ådne From 4ab1acefaf065d0b647b0530ffcabc51ea177a5d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=C3=85dne=20Hovda?= aho...@openit.com Date: Mon, 30 Mar 2015 21:32:25 +0200 Subject: [PATCH] Use finite() for AIX