From: Daniel Stenberg Date: Tue, 9 Mar 2021 23:38:21 +0000 (+0100) Subject: configure: provide Largefile feature for curl-config X-Git-Tag: curl-7_76_0~85 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=dcccd8dd25a8e9d476f9bda94f9ebfd0b9f472db;p=thirdparty%2Fcurl.git configure: provide Largefile feature for curl-config ... as cmake now does it correctly, and make test1014 check for it Closes #6702 --- diff --git a/configure.ac b/configure.ac index 1af9d0f419..f3b11f0053 100755 --- a/configure.ac +++ b/configure.ac @@ -5262,6 +5262,13 @@ if test "x$ECH_ENABLED" = "x1"; then SUPPORT_FEATURES="$SUPPORT_FEATURES ECH" 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 + SUPPORT_FEATURES="$SUPPORT_FEATURES Largefile" + fi +fi + dnl replace spaces with newlines dnl sort the lines dnl replace the newlines back to spaces diff --git a/tests/libtest/test1013.pl b/tests/libtest/test1013.pl index 055ef957af..4160ff9236 100755 --- a/tests/libtest/test1013.pl +++ b/tests/libtest/test1013.pl @@ -6,7 +6,7 @@ # | (__| |_| | _ <| |___ # \___|\___/|_| \_\_____| # -# Copyright (C) 1998 - 2020, Daniel Stenberg, , et al. +# Copyright (C) 1998 - 2021, Daniel Stenberg, , et al. # # This software is licensed as described in the file COPYING, which # you should have received as part of this distribution. The terms @@ -44,7 +44,7 @@ $curl_protocols =~ /\w+: (.*)$/; @curl = split / /,$1; # These features are not supported by curl-config -@curl = grep(!/^(Debug|TrackMemory|Metalink|Largefile|CharConv)$/i, @curl); +@curl = grep(!/^(Debug|TrackMemory|Metalink|CharConv)$/i, @curl); @curl = sort @curl; # Read the output of curl-config