From: Jay Satiro Date: Mon, 25 Sep 2023 22:22:25 +0000 (-0400) Subject: config-win32: define HAVE__FSEEKI64 X-Git-Tag: curl-8_4_0~123 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=aa6c94c5bf4f5caa31c0213d9cd7058c29a9b30b;p=thirdparty%2Fcurl.git config-win32: define HAVE__FSEEKI64 Follow-up to 9c7165e9 which added an fseeko wrapper to the lib that calls _fseeki64 if it is available. Closes https://github.com/curl/curl/pull/11944 --- diff --git a/lib/config-win32.h b/lib/config-win32.h index e358741a17..f8f7b1ba34 100644 --- a/lib/config-win32.h +++ b/lib/config-win32.h @@ -564,6 +564,10 @@ Vista # endif #endif +#ifdef USE_WIN32_LARGE_FILES +#define HAVE__FSEEKI64 +#endif + /* Define to the size of `off_t', as computed by sizeof. */ #if defined(__MINGW32__) && \ defined(_FILE_OFFSET_BITS) && (_FILE_OFFSET_BITS == 64)