autotools: fix LargeFile feature display on Windows (after prev patch)

Always show it on Windows, regardless of the `--disable-largefile`
build option.

Follow-up to 163705db75 #19888
Closes #19922
This commit is contained in:
Viktor Szakats 2025-12-10 18:45:06 +01:00
parent a73040ac8a
commit cc285649dc
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -5317,7 +5317,7 @@ fi
if test ${ac_cv_sizeof_curl_off_t} -gt 4; then if test ${ac_cv_sizeof_curl_off_t} -gt 4; then
if test ${ac_cv_sizeof_off_t} -gt 4 -o \ 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" SUPPORT_FEATURES="$SUPPORT_FEATURES Largefile"
fi fi
fi fi