]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
autotools: fix LargeFile feature display on Windows (after prev patch)
authorViktor Szakats <commit@vsz.me>
Wed, 10 Dec 2025 17:45:06 +0000 (18:45 +0100)
committerViktor Szakats <commit@vsz.me>
Wed, 10 Dec 2025 18:37:56 +0000 (19:37 +0100)
Always show it on Windows, regardless of the `--disable-largefile`
build option.

Follow-up to 163705db756557e6c07ac9386663f0576ebfd64e #19888
Closes #19922

configure.ac

index 64fa6516ec8f463513c64a032ffbcf255a38399b..40d4fc29fe4efd6e6502924e0c9bd4e7c4517d5a 100644 (file)
@@ -5317,7 +5317,7 @@ fi
 
 if test ${ac_cv_sizeof_curl_off_t} -gt 4; then
   if test ${ac_cv_sizeof_off_t} -gt 4 -o \
-     "$curl_win32_file_api" = "win32_large_files"; then
+     "$curl_cv_native_windows" = "yes"; then
     SUPPORT_FEATURES="$SUPPORT_FEATURES Largefile"
   fi
 fi