[Cmake-commits] CMake branch, master, updated. v3.5.2-606-g058b22c
Brad King
brad.king at kitware.com
Fri May 6 08:22:32 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, master has been updated
via 058b22cd5a544aea09a59dc90c9d642662844ea3 (commit)
via 58216d16946b7a14570f1a1dd4d260ed146b3faa (commit)
via f177c8a0a7695bfee618e08357291d893b45613b (commit)
via 4544c68a6ed18a42edb10903b9e0d4983a0e2f5c (commit)
via 9f7de3960cbf3e36ce3a83b57d48bef7116693de (commit)
via b4678e1c34b3e269e438f9e58aaca6d39d34866f (commit)
via 94c626808b1a873e83ea3136dda9c62ef855d77b (commit)
via 318b1c17a96a2e1e93bc8a457e98770e829ea02c (commit)
via 4876463049593de6d1189fae29726b75d7a134ac (commit)
via f4bd9d43b8b38441a85ba952460afcae383fd695 (commit)
via 7eb7a189631074567e6a803f6dd057e90800e186 (commit)
from 0723a9fec8eb5268df4ffb6510546c450d49d741 (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=058b22cd5a544aea09a59dc90c9d642662844ea3
commit 058b22cd5a544aea09a59dc90c9d642662844ea3
Merge: 0723a9f 58216d1
Author: Brad King <brad.king at kitware.com>
AuthorDate: Fri May 6 08:22:31 2016 -0400
Commit: CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Fri May 6 08:22:31 2016 -0400
Merge topic 'update-expat'
58216d16 expat: Suppress compiler warnings
f177c8a0 expat: Re-write CMake build system for our needs
4544c68a expat: Hard-code configuration options for our needs
9f7de396 expat: Drop upstream test/install/packaging code
b4678e1c expat: Update cm_expat.h wrapper for new header location
94c62680 Merge branch 'upstream-expat' into update-expat
318b1c17 expat 2016-05-01 (379213ca)
48764630 expat: Disable all whitespace checks in third-party code
f4bd9d43 Add script to update Expat from upstream
7eb7a189 Drop old expat sources to make room for a fresh import
-----------------------------------------------------------------------
Summary of changes:
Utilities/Scripts/update-expat.bash | 49 +
Utilities/cm_expat.h | 2 +-
Utilities/cmexpat/.NoDartCoverage | 1 -
Utilities/{cmcurl => cmexpat}/.gitattributes | 0
Utilities/cmexpat/CMakeLists.txt | 51 +-
Utilities/cmexpat/COPYING | 1 +
Utilities/cmexpat/ConfigureChecks.cmake | 44 +
Utilities/cmexpat/README | 139 +
Utilities/cmexpat/cm_expat_mangle.h | 87 -
Utilities/cmexpat/expat.h | 740 ---
Utilities/cmexpat/expatConfig.h.in | 43 -
Utilities/cmexpat/expatDllConfig.h.in | 6 -
Utilities/cmexpat/expat_config.h.cmake | 76 +
Utilities/cmexpat/{ => lib}/ascii.h | 14 +-
Utilities/cmexpat/{ => lib}/asciitab.h | 5 +-
Utilities/cmexpat/lib/expat.h | 1047 +++++
Utilities/cmexpat/lib/expat_external.h | 117 +
Utilities/cmexpat/{ => lib}/iasciitab.h | 5 +-
Utilities/cmexpat/lib/internal.h | 73 +
Utilities/cmexpat/{ => lib}/latin1tab.h | 5 +-
Utilities/cmexpat/{ => lib}/nametab.h | 0
Utilities/cmexpat/{ => lib}/utf8tab.h | 5 +-
Utilities/cmexpat/lib/winconfig.h | 27 +
Utilities/cmexpat/lib/xmlparse.c | 6454 ++++++++++++++++++++++++++
Utilities/cmexpat/{ => lib}/xmlrole.c | 1077 ++---
Utilities/cmexpat/{ => lib}/xmlrole.h | 30 +-
Utilities/cmexpat/{ => lib}/xmltok.c | 660 +--
Utilities/cmexpat/lib/xmltok.h | 316 ++
Utilities/cmexpat/{ => lib}/xmltok_impl.c | 228 +-
Utilities/cmexpat/{ => lib}/xmltok_impl.h | 0
Utilities/cmexpat/lib/xmltok_ns.c | 115 +
Utilities/cmexpat/xmlparse.c | 4622 ------------------
Utilities/cmexpat/xmltok.h | 299 --
Utilities/cmexpat/xmltok_ns.c | 98 -
34 files changed, 9513 insertions(+), 6923 deletions(-)
create mode 100755 Utilities/Scripts/update-expat.bash
delete mode 100644 Utilities/cmexpat/.NoDartCoverage
copy Utilities/{cmcurl => cmexpat}/.gitattributes (100%)
create mode 100644 Utilities/cmexpat/ConfigureChecks.cmake
create mode 100644 Utilities/cmexpat/README
delete mode 100644 Utilities/cmexpat/cm_expat_mangle.h
delete mode 100644 Utilities/cmexpat/expat.h
delete mode 100644 Utilities/cmexpat/expatConfig.h.in
delete mode 100644 Utilities/cmexpat/expatDllConfig.h.in
create mode 100644 Utilities/cmexpat/expat_config.h.cmake
rename Utilities/cmexpat/{ => lib}/ascii.h (84%)
rename Utilities/cmexpat/{ => lib}/asciitab.h (93%)
create mode 100644 Utilities/cmexpat/lib/expat.h
create mode 100644 Utilities/cmexpat/lib/expat_external.h
rename Utilities/cmexpat/{ => lib}/iasciitab.h (93%)
create mode 100644 Utilities/cmexpat/lib/internal.h
rename Utilities/cmexpat/{ => lib}/latin1tab.h (93%)
rename Utilities/cmexpat/{ => lib}/nametab.h (100%)
rename Utilities/cmexpat/{ => lib}/utf8tab.h (93%)
create mode 100644 Utilities/cmexpat/lib/winconfig.h
create mode 100644 Utilities/cmexpat/lib/xmlparse.c
rename Utilities/cmexpat/{ => lib}/xmlrole.c (53%)
rename Utilities/cmexpat/{ => lib}/xmlrole.h (74%)
rename Utilities/cmexpat/{ => lib}/xmltok.c (67%)
create mode 100644 Utilities/cmexpat/lib/xmltok.h
rename Utilities/cmexpat/{ => lib}/xmltok_impl.c (89%)
rename Utilities/cmexpat/{ => lib}/xmltok_impl.h (100%)
create mode 100644 Utilities/cmexpat/lib/xmltok_ns.c
delete mode 100644 Utilities/cmexpat/xmlparse.c
delete mode 100644 Utilities/cmexpat/xmltok.h
delete mode 100644 Utilities/cmexpat/xmltok_ns.c
hooks/post-receive
--
CMake
More information about the Cmake-commits
mailing list