From 1f789c5be16cd1cb02853043938499a92bcac024 Mon Sep 17 00:00:00 2001 From: Viktor Szakats Date: Fri, 17 Jan 2025 02:34:47 +0100 Subject: [PATCH] configure: do not inline 'dnl' comments [ci skip] (Did not cause issues in this particular case.) Follow-up to a1184525a6fc144cccf81cab406880519777bd21 #15971 --- acinclude.m4 | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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 -- 2.47.3