configure: do not inline 'dnl' comments [ci skip]

(Did not cause issues in this particular case.)

Follow-up to a1184525a6fc144cccf81cab406880519777bd21 #15971
This commit is contained in:
Viktor Szakats 2025-01-17 02:34:47 +01:00
parent 140790d74d
commit 1f789c5be1
No known key found for this signature in database
GPG Key ID: B5ABD165E2AEF201

View File

@ -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