[Cmake-commits] CMake branch, next, updated. v3.6.2-2620-g9b129dc

Brad King brad.king at kitware.com
Thu Sep 29 10:56:55 EDT 2016


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  9b129dc83e1e7d558f34923533a8fad412052e0e (commit)
       via  6fe45e989d9b35dce812203b368b0a5d7fdacca6 (commit)
       via  0ab471adf18924a3a85a81fec79052e191bfcf94 (commit)
      from  58db1137860a859865472dec91f04e6aefcb6366 (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 -----------------------------------------------------------------
https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=9b129dc83e1e7d558f34923533a8fad412052e0e
commit 9b129dc83e1e7d558f34923533a8fad412052e0e
Merge: 58db113 6fe45e9
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Sep 29 10:56:54 2016 -0400
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Thu Sep 29 10:56:54 2016 -0400

    Merge topic 'update-kwsys' into next
    
    6fe45e98 Merge branch 'upstream-KWSys' into update-kwsys
    0ab471ad KWSys 2016-09-29 (6cfcbede)


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=6fe45e989d9b35dce812203b368b0a5d7fdacca6
commit 6fe45e989d9b35dce812203b368b0a5d7fdacca6
Merge: 5d29506 0ab471a
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Thu Sep 29 10:56:37 2016 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Thu Sep 29 10:56:37 2016 -0400

    Merge branch 'upstream-KWSys' into update-kwsys
    
    * upstream-KWSys:
      KWSys 2016-09-29 (6cfcbede)


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0ab471adf18924a3a85a81fec79052e191bfcf94
commit 0ab471adf18924a3a85a81fec79052e191bfcf94
Author:     KWSys Upstream <kwrobot at kitware.com>
AuthorDate: Thu Sep 29 10:45:27 2016 -0400
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Thu Sep 29 10:56:36 2016 -0400

    KWSys 2016-09-29 (6cfcbede)
    
    Code extracted from:
    
        http://public.kitware.com/KWSys.git
    
    at commit 6cfcbedeb253b64e6d07f436f1ac0f0b488bbc9b (master).
    
    Upstream Shortlog
    -----------------
    
    Brad King (1):
          6cfcbede SystemTools: Include strings.h on MinGW for strcasecmp

diff --git a/SystemTools.cxx b/SystemTools.cxx
index 4281c38..c97af25 100644
--- a/SystemTools.cxx
+++ b/SystemTools.cxx
@@ -66,6 +66,10 @@
 #include <sys/stat.h>
 #include <time.h>
 
+#if defined(_WIN32) && !defined(_MSC_VER) && defined(__GNUC__)
+# include <strings.h> /* for strcasecmp */
+#endif
+
 #ifdef _MSC_VER
 # define umask _umask // Note this is still umask on Borland
 #endif

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

Summary of changes:
 Source/kwsys/SystemTools.cxx |    4 ++++
 1 file changed, 4 insertions(+)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list