diff options
author | Brad King <brad.king@kitware.com> | 2018-10-23 14:19:47 (GMT) |
---|---|---|
committer | Kitware Robot <kwrobot@kitware.com> | 2018-10-23 14:19:58 (GMT) |
commit | 887ba2dc5ff2668542f43a1fb2d8a6e7cc2ef105 (patch) | |
tree | 68cd0515e672d3498e50fe07b433efa7924346a5 /Utilities | |
parent | 8ec4b5a93028153c8ec443bee7038843cb8a3866 (diff) | |
parent | 3dc484e5311836e5fb741605075c188e130334bf (diff) | |
download | CMake-887ba2dc5ff2668542f43a1fb2d8a6e7cc2ef105.zip CMake-887ba2dc5ff2668542f43a1fb2d8a6e7cc2ef105.tar.gz CMake-887ba2dc5ff2668542f43a1fb2d8a6e7cc2ef105.tar.bz2 |
Merge topic 'curl-ssize_t'
3dc484e531 curl: add missing type sizes for 'long long' and '__int64'
Acked-by: Kitware Robot <kwrobot@kitware.com>
Merge-request: !2513
Diffstat (limited to 'Utilities')
-rw-r--r-- | Utilities/cmcurl/lib/curl_config.h.cmake | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Utilities/cmcurl/lib/curl_config.h.cmake b/Utilities/cmcurl/lib/curl_config.h.cmake index 24d1ca0..75f30cb 100644 --- a/Utilities/cmcurl/lib/curl_config.h.cmake +++ b/Utilities/cmcurl/lib/curl_config.h.cmake @@ -876,6 +876,12 @@ /* The size of `long', as computed by sizeof. */ @SIZEOF_LONG_CODE@ +/* The size of `long long', as computed by sizeof. */ +@SIZEOF_LONG_LONG_CODE@ + +/* The size of `__int64', as computed by sizeof. */ +@SIZEOF___INT64_CODE@ + /* The size of `off_t', as computed by sizeof. */ @SIZEOF_OFF_T_CODE@ |