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  67dbde412032c40fec53387ac32e7361b208166b (commit)
       via  16f5d1843b3720729f50376f522550fcfa787a3c (commit)
       via  a6f5281419c59b433f248b41972530242172a124 (commit)
      from  343a2a6fe2bf4ddd7b661fee1f6b1315247ae01d (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=67dbde412032c40fec53387ac32e7361b208166b
commit 67dbde412032c40fec53387ac32e7361b208166b
Merge: 343a2a6 16f5d18
Author:     Brad King <brad.k...@kitware.com>
AuthorDate: Tue Dec 1 09:00:49 2015 -0500
Commit:     CMake Topic Stage <kwro...@kitware.com>
CommitDate: Tue Dec 1 09:00:49 2015 -0500

    Merge topic 'include-for-mode_t' into next
    
    16f5d184 Include `sys/types.h` header to get `mode_t`
    a6f52814 CMake Nightly Date Stamp


https://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=16f5d1843b3720729f50376f522550fcfa787a3c
commit 16f5d1843b3720729f50376f522550fcfa787a3c
Author:     Kylie McClain <somasissou...@gmail.com>
AuthorDate: Wed Nov 25 18:12:06 2015 -0500
Commit:     Brad King <brad.k...@kitware.com>
CommitDate: Tue Dec 1 08:58:45 2015 -0500

    Include `sys/types.h` header to get `mode_t`
    
    Do not depend on it being included by other system headers.
    It is not included by others on musl-libc, for example.

diff --git a/Source/cmStandardIncludes.h b/Source/cmStandardIncludes.h
index dd8fa9c..aed2e74 100644
--- a/Source/cmStandardIncludes.h
+++ b/Source/cmStandardIncludes.h
@@ -54,6 +54,8 @@
 
 #if defined( _MSC_VER )
 typedef unsigned short mode_t;
+#else
+# include <sys/types.h>
 #endif
 
 // use this class to shrink the size of symbols in .o files

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

Summary of changes:
 Source/CMakeVersion.cmake   |    2 +-
 Source/cmStandardIncludes.h |    2 ++
 2 files changed, 3 insertions(+), 1 deletion(-)


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

Reply via email to