aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-09-09 13:58:46 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2022-09-11 18:40:21 +0300
commit070947d809d65a22967ee486af5e26d48bae7b21 (patch)
tree3939f290adb09d49bf8305663d7bfc23e63f8d6c
parent0531511f18f102455903b2bdcefda73b6df9b966 (diff)
downloadlibmicrohttpd-070947d809d65a22967ee486af5e26d48bae7b21.tar.gz
libmicrohttpd-070947d809d65a22967ee486af5e26d48bae7b21.zip
configure: fixed underquoting, typos, wording
-rw-r--r--configure.ac20
1 files changed, 8 insertions, 12 deletions
diff --git a/configure.ac b/configure.ac
index b12bb253..64631425 100644
--- a/configure.ac
+++ b/configure.ac
@@ -3033,28 +3033,26 @@ AM_CONDITIONAL([HAVE_GNUTLS_MTHREAD_BROKEN], [[test "x${mhd_cv_gnutls_mthread_br
3033AM_CONDITIONAL([USE_UPGRADE_TLS_TESTS], [[test "x${mhd_cv_gnutls_mthread_broken}" = "xno" || test "x${mhd_cv_gnutls_cli}" = "xyes"]]) 3033AM_CONDITIONAL([USE_UPGRADE_TLS_TESTS], [[test "x${mhd_cv_gnutls_mthread_broken}" = "xno" || test "x${mhd_cv_gnutls_cli}" = "xyes"]])
3034 3034
3035# optional: HTTP Basic Auth support. Enabled by default 3035# optional: HTTP Basic Auth support. Enabled by default
3036AC_MSG_CHECKING([[whether to support HTTP basic authentication]]) 3036AC_MSG_CHECKING([[whether to support HTTP Basic authentication]])
3037AC_ARG_ENABLE([bauth], 3037AC_ARG_ENABLE([bauth],
3038 AS_HELP_STRING([--disable-bauth], 3038 [AS_HELP_STRING([--disable-bauth],[disable HTTP Basic Authentication support])],
3039 [disable HTTP basic Auth support]),
3040 [enable_bauth=${enableval}], 3039 [enable_bauth=${enableval}],
3041 [enable_bauth=yes]) 3040 [enable_bauth=yes])
3042AS_IF([[test "x$enable_bauth" != "xno"]], 3041AS_IF([[test "x$enable_bauth" != "xno"]],
3043 [ enable_bauth=yes 3042 [ enable_bauth=yes
3044 AC_DEFINE([BAUTH_SUPPORT],[1],[Define to 1 if libmicrohttpd is compiled with basic Auth support.]) ]) 3043 AC_DEFINE([BAUTH_SUPPORT],[1],[Define to 1 if libmicrohttpd is compiled with Basic Auth support.]) ])
3045AM_CONDITIONAL([ENABLE_BAUTH], [test "x$enable_bauth" != "xno"]) 3044AM_CONDITIONAL([ENABLE_BAUTH], [test "x$enable_bauth" != "xno"])
3046AC_MSG_RESULT([[$enable_bauth]]) 3045AC_MSG_RESULT([[$enable_bauth]])
3047 3046
3048# optional: HTTP Digest Auth support. Enabled by default 3047# optional: HTTP Digest Auth support. Enabled by default
3049AC_MSG_CHECKING([[whether to support HTTP digest authentication]]) 3048AC_MSG_CHECKING([[whether to support HTTP Digest authentication]])
3050AC_ARG_ENABLE([dauth], 3049AC_ARG_ENABLE([dauth],
3051 AS_HELP_STRING([--disable-dauth], 3050 [AS_HELP_STRING([--disable-dauth], [disable HTTP Digest Authentication support])],
3052 [disable HTTP basic and digest Auth support]),
3053 [enable_dauth=${enableval}], 3051 [enable_dauth=${enableval}],
3054 [enable_dauth=yes]) 3052 [enable_dauth=yes])
3055AS_IF([[test "x$enable_dauth" != "xno"]], 3053AS_IF([[test "x$enable_dauth" != "xno"]],
3056 [ enable_dauth=yes 3054 [ enable_dauth=yes
3057 AC_DEFINE([DAUTH_SUPPORT],[1],[Define to 1 if libmicrohttpd is compiled with digest Auth support.]) ]) 3055 AC_DEFINE([DAUTH_SUPPORT],[1],[Define to 1 if libmicrohttpd is compiled with Digest Auth support.]) ])
3058AM_CONDITIONAL([ENABLE_DAUTH], [test "x$enable_dauth" != "xno"]) 3056AM_CONDITIONAL([ENABLE_DAUTH], [test "x$enable_dauth" != "xno"])
3059AC_MSG_RESULT([[$enable_dauth]]) 3057AC_MSG_RESULT([[$enable_dauth]])
3060 3058
@@ -3063,8 +3061,7 @@ AM_CONDITIONAL([HAVE_ANYAUTH],[test "x$enable_bauth" != "xno" || test "x$enable_
3063# optional: HTTP "Upgrade" support. Enabled by default 3061# optional: HTTP "Upgrade" support. Enabled by default
3064AC_MSG_CHECKING([[whether to support HTTP "Upgrade"]]) 3062AC_MSG_CHECKING([[whether to support HTTP "Upgrade"]])
3065AC_ARG_ENABLE([[httpupgrade]], 3063AC_ARG_ENABLE([[httpupgrade]],
3066 AS_HELP_STRING([[--disable-httpupgrade]], 3064 [AS_HELP_STRING([[--disable-httpupgrade]], [disable HTTP "Upgrade" support])],
3067 [disable HTTP "Upgrade" support]),
3068 [AS_VAR_IF([[enable_httpupgrade]],[["no"]],[],[[enable_httpupgrade='yes']])], 3065 [AS_VAR_IF([[enable_httpupgrade]],[["no"]],[],[[enable_httpupgrade='yes']])],
3069 [[enable_httpupgrade='yes']]) 3066 [[enable_httpupgrade='yes']])
3070AS_VAR_IF([[enable_httpupgrade]],[["yes"]], 3067AS_VAR_IF([[enable_httpupgrade]],[["yes"]],
@@ -3076,8 +3073,7 @@ AC_MSG_RESULT([[$enable_httpupgrade]])
3076# optional: HTTP cookie parsing support. Enabled by default 3073# optional: HTTP cookie parsing support. Enabled by default
3077AC_MSG_CHECKING([[whether to support HTTP cookie parsing]]) 3074AC_MSG_CHECKING([[whether to support HTTP cookie parsing]])
3078AC_ARG_ENABLE([[cookie]], 3075AC_ARG_ENABLE([[cookie]],
3079 AS_HELP_STRING([[--disable-cookie]], 3076 [AS_HELP_STRING([[--disable-cookie]], [disable HTTP cookie parsing support])],
3080 [disable HTTP cookie parsing support]),
3081 [AS_VAR_IF([[enable_cookie]],[["no"]],[],[[enable_cookie='yes']])], 3077 [AS_VAR_IF([[enable_cookie]],[["no"]],[],[[enable_cookie='yes']])],
3082 [[enable_cookie='yes']]) 3078 [[enable_cookie='yes']])
3083AS_VAR_IF([[enable_cookie]],[["yes"]], 3079AS_VAR_IF([[enable_cookie]],[["yes"]],