mirror of
https://github.com/curl/curl.git
synced 2026-08-11 21:20:59 +03:00
msvc: assume _INTEGRAL_MAX_BITS >= 64
curl requires C compilers supporting 64-bit `curl_off_t` type since835682661c#10597 (v8.0.0). Assume the MSVC compiler offers the necessary support. It makes curl require Visual Studio .NET 2003, v7.1 (`_MSC_VER = 1310`). With the possibility that 1300 (Visual Studio .NET, v7.0, 2002), or 1200 (Visual C++, 32-bit, v6.0, 1998) may also work. Follow-up toca18198dd4#15952 Closes #15955
This commit is contained in:
parent
34cebd8735
commit
0494566ae8
5 changed files with 8 additions and 25 deletions
|
|
@ -37,7 +37,7 @@
|
|||
#ifdef HAVE_LONGLONG
|
||||
# define LONG_LONG_TYPE long long
|
||||
# define HAVE_LONG_LONG_TYPE
|
||||
#elif defined(_MSC_VER) && (_INTEGRAL_MAX_BITS >= 64)
|
||||
#elif defined(_MSC_VER)
|
||||
# define LONG_LONG_TYPE __int64
|
||||
# define HAVE_LONG_LONG_TYPE
|
||||
#else
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue