[Cmake-commits] CMake branch, next, updated. v2.8.7-2402-g314ef3f

Rolf Eike Beer eike at sf-mail.de
Wed Feb 1 12:17:34 EST 2012


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  314ef3faeaba86af73c468b1393cc7724aa8434e (commit)
       via  44d007b6593eeea2c2c47a4431603ed08bc22280 (commit)
       via  b2215bdb26c3e1f376232e6ef974e6208bf681f6 (commit)
       via  7ac717c079c4b4132c9accb6c01ab94ddcaf45d7 (commit)
      from  25e5396b37b55da97d992f11754da5413c024226 (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=314ef3faeaba86af73c468b1393cc7724aa8434e
commit 314ef3faeaba86af73c468b1393cc7724aa8434e
Merge: 25e5396 44d007b
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Wed Feb 1 12:17:31 2012 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Wed Feb 1 12:17:31 2012 -0500

    Merge topic 'check_include_files_output' into next
    
    44d007b CheckIncludeFiles: fix status output
    b2215bd KWSys Nightly Date Stamp
    7ac717c KWSys Nightly Date Stamp


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=44d007b6593eeea2c2c47a4431603ed08bc22280
commit 44d007b6593eeea2c2c47a4431603ed08bc22280
Author:     Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Wed Feb 1 18:14:52 2012 +0100
Commit:     Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Wed Feb 1 18:14:52 2012 +0100

    CheckIncludeFiles: fix status output
    
    CHECK_INCLUDE_FILES("foo.h" HAVE_FOO_H) gave an output like:
    
      Looking for include files HAVE_FOO_H
    
    After this change it does now what CHECK_INCLUDE_FILE() also does:
    
      Looking for include files foo.h

diff --git a/Modules/CheckIncludeFiles.cmake b/Modules/CheckIncludeFiles.cmake
index 75b5ca1..642d962 100644
--- a/Modules/CheckIncludeFiles.cmake
+++ b/Modules/CheckIncludeFiles.cmake
@@ -44,7 +44,7 @@ MACRO(CHECK_INCLUDE_FILES INCLUDE VARIABLE)
     CONFIGURE_FILE("${CMAKE_ROOT}/Modules/CMakeConfigurableFile.in"
       "${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFiles.c" @ONLY IMMEDIATE)
 
-    MESSAGE(STATUS "Looking for include files ${VARIABLE}")
+    MESSAGE(STATUS "Looking for include files ${INCLUDE}")
     TRY_COMPILE(${VARIABLE}
       ${CMAKE_BINARY_DIR}
       ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/CheckIncludeFiles.c
@@ -54,15 +54,15 @@ MACRO(CHECK_INCLUDE_FILES INCLUDE VARIABLE)
       "${CHECK_INCLUDE_FILES_INCLUDE_DIRS}"
       OUTPUT_VARIABLE OUTPUT)
     IF(${VARIABLE})
-      MESSAGE(STATUS "Looking for include files ${VARIABLE} - found")
-      SET(${VARIABLE} 1 CACHE INTERNAL "Have include ${VARIABLE}")
+      MESSAGE(STATUS "Looking for include files ${INCLUDE} - found")
+      SET(${VARIABLE} 1 CACHE INTERNAL "Have include ${INCLUDE}")
       FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log 
         "Determining if files ${INCLUDE} "
         "exist passed with the following output:\n"
         "${OUTPUT}\n\n")
     ELSE(${VARIABLE})
-      MESSAGE(STATUS "Looking for include files ${VARIABLE} - not found.")
-      SET(${VARIABLE} "" CACHE INTERNAL "Have includes ${VARIABLE}")
+      MESSAGE(STATUS "Looking for include files ${INCLUDE} - not found.")
+      SET(${VARIABLE} "" CACHE INTERNAL "Have includes ${INCLUDE}")
       FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log 
         "Determining if files ${INCLUDE} "
         "exist failed with the following output:\n"

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

Summary of changes:
 Modules/CheckIncludeFiles.cmake   |   10 +++++-----
 Source/kwsys/kwsysDateStamp.cmake |    4 ++--
 2 files changed, 7 insertions(+), 7 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list