This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "CMake".

The branch, next has been updated
       via  f9e5b82899b576d8a7d75faf33a58a3b120762a0 (commit)
       via  9ff63a2cfbdb4ab6ac38db25b1fbae27dcce9f65 (commit)
      from  72a4b74c7701d2249412c4057bf285bc7932eb3a (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=f9e5b82899b576d8a7d75faf33a58a3b120762a0
commit f9e5b82899b576d8a7d75faf33a58a3b120762a0
Merge: 72a4b74 9ff63a2
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Thu Nov 1 10:49:07 2012 -0400
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Thu Nov 1 10:49:07 2012 -0400

    Merge topic 'fix-KWSys-SystemInformation' into next
    
    9ff63a2 KWSys: In SystemInformation skip backtrace on LSB < 4.1


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9ff63a2cfbdb4ab6ac38db25b1fbae27dcce9f65
commit 9ff63a2cfbdb4ab6ac38db25b1fbae27dcce9f65
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Thu Nov 1 10:46:18 2012 -0400
Commit:     Brad King <brad.k...@kitware.com>
CommitDate: Thu Nov 1 10:47:49 2012 -0400

    KWSys: In SystemInformation skip backtrace on LSB < 4.1
    
    The backtrace API was added in LSB 4.1 but does not exist in 4.0.

diff --git a/Source/kwsys/SystemInformation.cxx 
b/Source/kwsys/SystemInformation.cxx
index 00e15f5..c5b6655 100644
--- a/Source/kwsys/SystemInformation.cxx
+++ b/Source/kwsys/SystemInformation.cxx
@@ -95,7 +95,9 @@ typedef int siginfo_t;
 # include <netinet/in.h>
 # if defined(__GNUG__)
 #  include <execinfo.h>
-#  define KWSYS_SYSTEMINFORMATION_HAVE_BACKTRACE
+#  if !(defined(__LSB_VERSION__) && __LSB_VERSION__ < 41)
+#   define KWSYS_SYSTEMINFORMATION_HAVE_BACKTRACE
+#  endif
 # endif
 # if defined(KWSYS_CXX_HAS_RLIMIT64)
 typedef struct rlimit64 ResourceLimitType;

-----------------------------------------------------------------------

Summary of changes:
 Source/kwsys/SystemInformation.cxx |    4 +++-
 1 files changed, 3 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake
_______________________________________________
Cmake-commits mailing list
Cmake-commits@cmake.org
http://public.kitware.com/cgi-bin/mailman/listinfo/cmake-commits

Reply via email to