[Cmake-commits] CMake branch, next, updated. v2.8.12.1-6137-g8542dd9

Brad King brad.king at kitware.com
Mon Dec 9 14:05:20 EST 2013


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  8542dd9c468d2ca6171b033e69320f1bd6c0efdd (commit)
       via  0bff4df5f64372260fc4cd0f648f5a19310141a0 (commit)
      from  77a2987069bd75b79eef1b6a611da14c4161dd96 (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=8542dd9c468d2ca6171b033e69320f1bd6c0efdd
commit 8542dd9c468d2ca6171b033e69320f1bd6c0efdd
Merge: 77a2987 0bff4df
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Dec 9 14:05:15 2013 -0500
Commit:     CMake Topic Stage <kwrobot at kitware.com>
CommitDate: Mon Dec 9 14:05:15 2013 -0500

    Merge topic 'libarchive-left-shift-fix' into next
    
    0bff4df libarchive: Use ARCHIVE_LITERAL_ULL to add ULL integer suffix


http://cmake.org/gitweb?p=cmake.git;a=commitdiff;h=0bff4df5f64372260fc4cd0f648f5a19310141a0
commit 0bff4df5f64372260fc4cd0f648f5a19310141a0
Author:     Brad King <brad.king at kitware.com>
AuthorDate: Mon Dec 9 14:03:43 2013 -0500
Commit:     Brad King <brad.king at kitware.com>
CommitDate: Mon Dec 9 14:04:24 2013 -0500

    libarchive: Use ARCHIVE_LITERAL_ULL to add ULL integer suffix
    
    The macro maps to an implementation that works on older compilers
    when necessary.

diff --git a/Utilities/cmlibarchive/libarchive/archive_read_support_format_tar.c b/Utilities/cmlibarchive/libarchive/archive_read_support_format_tar.c
index bb9d533..c7c808f 100644
--- a/Utilities/cmlibarchive/libarchive/archive_read_support_format_tar.c
+++ b/Utilities/cmlibarchive/libarchive/archive_read_support_format_tar.c
@@ -2487,7 +2487,7 @@ tar_atol256(const char *_p, size_t char_cnt)
 	if (c & 0x40) {
 		neg = 0xff;
 		c |= 0x80;
-		l = ~0ULL;
+		l = ~ARCHIVE_LITERAL_ULL(0);
 	} else {
 		neg = 0;
 		c &= 0x7f;

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

Summary of changes:
 .../libarchive/archive_read_support_format_tar.c   |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)


hooks/post-receive
-- 
CMake


More information about the Cmake-commits mailing list