mirror of
https://github.com/curl/curl.git
synced 2026-07-29 01:33:07 +03:00
Get rid of ENABLE_64BIT symbol definition and usage.
Improve HAVE_LONGLONG symbol description.
This commit is contained in:
parent
44142f8234
commit
ceb49d3742
9 changed files with 43 additions and 36 deletions
|
|
@ -190,7 +190,16 @@ static curl_version_info_data version_info = {
|
|||
#ifdef HAVE_SPNEGO
|
||||
| CURL_VERSION_SPNEGO
|
||||
#endif
|
||||
#if defined(ENABLE_64BIT) && (CURL_SIZEOF_CURL_OFF_T > 4)
|
||||
/*
|
||||
* FIXME before 7.19.0 release.
|
||||
*
|
||||
* libcurl is largefile enabled when (CURL_SIZEOF_CURL_OFF_T > 4) _AND_
|
||||
* libcurl has been built with sizeof(system off_t) > 4 or when large
|
||||
* file support is available even with sizeof(system off_t) <= 4.
|
||||
*
|
||||
* Until this is adjusted, only the (CURL_SIZEOF_CURL_OFF_T > 4) check is done.
|
||||
*/
|
||||
#if (CURL_SIZEOF_CURL_OFF_T > 4)
|
||||
| CURL_VERSION_LARGEFILE
|
||||
#endif
|
||||
#if defined(CURL_DOES_CONVERSIONS)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue