[Cmake-commits] CMake branch, next, updated. v3.0.0-rc3-2313-g72f70d1
Rolf Eike Beer
eike at sf-mail.de
Mon Apr 14 14:42:58 EDT 2014
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 72f70d115b7f0718932e9078c9b55247134a669b (commit)
via 0c04b78ba022d0e7ee6874a98cf830c28d68d71c (commit)
from 6ea954f218130d9066f33be685f1a06b12794323 (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=72f70d115b7f0718932e9078c9b55247134a669b
commit 72f70d115b7f0718932e9078c9b55247134a669b
Merge: 6ea954f 0c04b78
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Mon Apr 14 14:42:57 2014 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Apr 14 14:42:57 2014 -0400
Merge topic 'openbsd-sign-warning' into next
0c04b78b cmELF: use more portable type
http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0c04b78ba022d0e7ee6874a98cf830c28d68d71c
commit 0c04b78ba022d0e7ee6874a98cf830c28d68d71c
Author: Rolf Eike Beer <eike at sf-mail.de>
AuthorDate: Mon Apr 14 20:42:43 2014 +0200
Commit: Rolf Eike Beer <eike at sf-mail.de>
CommitDate: Mon Apr 14 20:42:43 2014 +0200
cmELF: use more portable type
diff --git a/Source/cmELF.cxx b/Source/cmELF.cxx
index 7abf557..cab23b7 100644
--- a/Source/cmELF.cxx
+++ b/Source/cmELF.cxx
@@ -198,7 +198,7 @@ struct cmELFTypes32
typedef Elf32_Shdr ELF_Shdr;
typedef Elf32_Dyn ELF_Dyn;
typedef Elf32_Half ELF_Half;
- typedef unsigned int tagtype;
+ typedef cmIML_INT_uint32_t tagtype;
static const char* GetName() { return "32-bit"; }
};
@@ -209,7 +209,7 @@ struct cmELFTypes64
typedef Elf64_Shdr ELF_Shdr;
typedef Elf64_Dyn ELF_Dyn;
typedef Elf64_Half ELF_Half;
- typedef unsigned long long tagtype;
+ typedef cmIML_INT_uint64_t tagtype;
static const char* GetName() { return "64-bit"; }
};
-----------------------------------------------------------------------
Summary of changes:
Source/cmELF.cxx | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list