Skip to content

Commit

Permalink
configure: do not inline 'dnl' comments [ci skip]
Browse files Browse the repository at this point in the history
(Did not cause issues in this particular case.)

Follow-up to a118452 curl#15971
  • Loading branch information
vszakats committed Jan 17, 2025
1 parent 140790d commit 1f789c5
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions acinclude.m4
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 1f789c5

Please sign in to comment.