summaryrefslogtreecommitdiffstats
path: root/Source/cmCacheManager.cxx
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2014-02-10 19:52:59 (GMT)
committerBrad King <brad.king@kitware.com>2014-02-10 20:32:32 (GMT)
commitd2059d25114b53c1e7531704b3e955c6853a355e (patch)
tree36e288b55188ca301d08da6694ed7cdbdf612050 /Source/cmCacheManager.cxx
parent28805109bcdea33933e889801a065fd1484b0547 (diff)
downloadCMake-d2059d25114b53c1e7531704b3e955c6853a355e.zip
CMake-d2059d25114b53c1e7531704b3e955c6853a355e.tar.gz
CMake-d2059d25114b53c1e7531704b3e955c6853a355e.tar.bz2
cmVersion: Fix CMake_VERSION_ENCODE for date in patch level
Use a uint64_t to store encoded version numbers so we have plenty of bits available. Encode with room for up to 1000 minor releases between major releases and to encode dates until the year 10000 in the patch level. This is necessary because CMake development versions prior to release 2.8.0 used the date in the patch level, and this practice may be restored after the 3.0 release.
Diffstat (limited to 'Source/cmCacheManager.cxx')
-rw-r--r--Source/cmCacheManager.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmCacheManager.cxx b/Source/cmCacheManager.cxx
index d3d8f3f..9e0064e 100644
--- a/Source/cmCacheManager.cxx
+++ b/Source/cmCacheManager.cxx
@@ -930,7 +930,7 @@ bool cmCacheManager::NeedCacheCompatibility(int major, int minor)
// Compatibility is needed if the cache version is equal to or lower
// than the given version.
- unsigned int actual_compat =
+ cmIML_INT_uint64_t actual_compat =
CMake_VERSION_ENCODE(this->CacheMajorVersion, this->CacheMinorVersion, 0);
return (actual_compat &&
actual_compat <= CMake_VERSION_ENCODE(major, minor, 0));