mirror of
https://github.com/curl/curl.git
synced 2025-02-11 14:50:40 +08:00
configure: break indentation to fix --help
output
For recently added/updated options: windows-unicode, winidn, apple-idn It looks like the second `AS_HELP_STRING()` must start in the first column, otherwise its indentation will appear in the `--help` output, and break unalignment with the rest. (There must be a better way to tackle this.)
This commit is contained in:
parent
3fc81be44e
commit
1e58665c2b
12
configure.ac
12
configure.ac
@ -2558,8 +2558,8 @@ if test "$curl_cv_native_windows" = "yes"; then
|
||||
AC_MSG_CHECKING([whether to enable Windows Unicode (Windows native builds only)])
|
||||
OPT_WINUNI="default"
|
||||
AC_ARG_WITH(windows-unicode,
|
||||
AS_HELP_STRING([--with-windows-unicode],[enable Windows Unicode])
|
||||
AS_HELP_STRING([--without-windows-unicode], [disable Windows Unicode (default)]),
|
||||
AS_HELP_STRING([--with-windows-unicode],[enable Windows Unicode])
|
||||
AS_HELP_STRING([--without-windows-unicode], [disable Windows Unicode (default)]),
|
||||
OPT_WINUNI=$withval)
|
||||
case "$OPT_WINUNI" in
|
||||
yes)
|
||||
@ -2584,8 +2584,8 @@ if test "$curl_cv_native_windows" = 'yes'; then
|
||||
AC_MSG_CHECKING([whether to enable Windows native IDN (Windows native builds only)])
|
||||
OPT_WINIDN="default"
|
||||
AC_ARG_WITH(winidn,
|
||||
AS_HELP_STRING([--with-winidn=PATH],[enable Windows native IDN])
|
||||
AS_HELP_STRING([--without-winidn], [disable Windows native IDN]),
|
||||
AS_HELP_STRING([--with-winidn=PATH],[enable Windows native IDN])
|
||||
AS_HELP_STRING([--without-winidn], [disable Windows native IDN]),
|
||||
OPT_WINIDN=$withval)
|
||||
case "$OPT_WINIDN" in
|
||||
no|default)
|
||||
@ -2672,8 +2672,8 @@ case $host_os in
|
||||
AC_MSG_CHECKING([whether to build with Apple IDN])
|
||||
OPT_IDN="default"
|
||||
AC_ARG_WITH(apple-idn,
|
||||
AS_HELP_STRING([--with-apple-idn],[Enable AppleIDN])
|
||||
AS_HELP_STRING([--without-apple-idn],[Disable AppleIDN]),
|
||||
AS_HELP_STRING([--with-apple-idn],[Enable AppleIDN])
|
||||
AS_HELP_STRING([--without-apple-idn],[Disable AppleIDN]),
|
||||
[OPT_IDN=$withval])
|
||||
case "$OPT_IDN" in
|
||||
yes)
|
||||
|
Loading…
Reference in New Issue
Block a user