From: Viktor Szakats Date: Wed, 10 Dec 2025 17:45:06 +0000 (+0100) Subject: autotools: fix LargeFile feature display on Windows (after prev patch) X-Git-Tag: rc-8_18_0-2~47 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=cc285649dc95b73eef5d498d93d0cdcc75b1e5c7;p=thirdparty%2Fcurl.git 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 163705db756557e6c07ac9386663f0576ebfd64e #19888 Closes #19922 --- diff --git a/configure.ac b/configure.ac index 64fa6516ec..40d4fc29fe 100644 --- a/configure.ac +++ b/configure.ac @@ -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