From: Viktor Szakats Date: Fri, 17 Jan 2025 01:34:47 +0000 (+0100) Subject: configure: do not inline 'dnl' comments [ci skip] X-Git-Tag: curl-8_12_0~96 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=1f789c5be16cd1cb02853043938499a92bcac024;p=thirdparty%2Fcurl.git configure: do not inline 'dnl' comments [ci skip] (Did not cause issues in this particular case.) Follow-up to a1184525a6fc144cccf81cab406880519777bd21 #15971 --- diff --git a/acinclude.m4 b/acinclude.m4 index 23d641bcfa..b550761a00 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -1382,10 +1382,12 @@ AC_DEFUN([CURL_CHECK_WIN32_LARGEFILE], [ AC_MSG_CHECKING([whether build target supports Win32 large files]) case $host_os in mingw32ce*|cegcc*) - curl_win32_has_largefile='no' dnl Windows CE does not support large files + dnl Windows CE does not support large files + curl_win32_has_largefile='no' ;; *) - curl_win32_has_largefile='yes' dnl All mingw-w64 versions support large files + dnl All mingw-w64 versions support large files + curl_win32_has_largefile='yes' ;; esac case "$curl_win32_has_largefile" in