autotools: fix indentation in help output for two options

By using weird indentation in the autoconf source.

Fixing:
```
  --enable-sspi           Enable SSPI
    --disable-sspi          Disable SSPI
[...]
  --enable-websockets     Enable WebSockets support
    --disable-websockets    Disable WebSockets support
```

Follow-up to 923db3515d #18116
Follow-up to d78e129d50 #14936

Closes #20342
This commit is contained in:
Viktor Szakats
2026-01-18 00:26:03 +01:00
parent 6d6899c2f0
commit ba7e51af2d

View File

@@ -4383,7 +4383,7 @@ if test "$curl_cv_winuwp" != "yes"; then
AC_MSG_CHECKING([whether to enable SSPI support (Windows native builds only)]) AC_MSG_CHECKING([whether to enable SSPI support (Windows native builds only)])
AC_ARG_ENABLE(sspi, AC_ARG_ENABLE(sspi,
AS_HELP_STRING([--enable-sspi],[Enable SSPI]) AS_HELP_STRING([--enable-sspi],[Enable SSPI])
AS_HELP_STRING([--disable-sspi],[Disable SSPI]), AS_HELP_STRING([--disable-sspi],[Disable SSPI]),
[ case "$enableval" in [ case "$enableval" in
yes) yes)
if test "$curl_cv_native_windows" = "yes"; then if test "$curl_cv_native_windows" = "yes"; then
@@ -5027,7 +5027,7 @@ if test "$CURL_DISABLE_HTTP" != "1"; then
AC_MSG_CHECKING([whether to support WebSockets]) AC_MSG_CHECKING([whether to support WebSockets])
AC_ARG_ENABLE(websockets, AC_ARG_ENABLE(websockets,
AS_HELP_STRING([--enable-websockets],[Enable WebSockets support]) AS_HELP_STRING([--enable-websockets],[Enable WebSockets support])
AS_HELP_STRING([--disable-websockets],[Disable WebSockets support]), AS_HELP_STRING([--disable-websockets],[Disable WebSockets support]),
[ case "$enableval" in [ case "$enableval" in
no) no)
AC_MSG_RESULT(no) AC_MSG_RESULT(no)