]> git.ipfire.org Git - thirdparty/curl.git/commitdiff
configure: do not inline 'dnl' comments [ci skip]
authorViktor Szakats <commit@vsz.me>
Fri, 17 Jan 2025 01:34:47 +0000 (02:34 +0100)
committerViktor Szakats <commit@vsz.me>
Fri, 17 Jan 2025 01:38:10 +0000 (02:38 +0100)
(Did not cause issues in this particular case.)

Follow-up to a1184525a6fc144cccf81cab406880519777bd21 #15971

acinclude.m4

index 23d641bcfaeb7b1b20d834805ad01b6cfc4028f6..b550761a009f2846046c1be98d0192dadff208f7 100644 (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