]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
config-win32: define HAVE__FSEEKI64
authorJay Satiro <raysatiro@yahoo.com>
Mon, 25 Sep 2023 22:22:25 +0000 (18:22 -0400)
committerJay Satiro <raysatiro@yahoo.com>
Tue, 26 Sep 2023 07:45:20 +0000 (03:45 -0400)
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

index e358741a174476c99ff6a5d3d9ed905e1b801e57..f8f7b1ba34863dc07f49377dd77e568fcb69ee8a 100644 (file)
@@ -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)