From aa6c94c5bf4f5caa31c0213d9cd7058c29a9b30b Mon Sep 17 00:00:00 2001 From: Jay Satiro Date: Mon, 25 Sep 2023 18:22:25 -0400 Subject: [PATCH] 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 --- lib/config-win32.h | 4 ++++ 1 file changed, 4 insertions(+) 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) -- 2.47.3