aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-03-14 21:44:22 +0300
committerEvgeny Grin (Karlson2k) <k2k@narod.ru>2017-03-14 21:44:22 +0300
commit6c67437c6213e4760eb00a4df6f2563dea60cdad (patch)
treefe7ab5e05ef85c91f997bb86fbcbaafccfabd774
parent079b61496e6a977e4c804a01ab0e3d30d5ad98b8 (diff)
downloadlibmicrohttpd-6c67437c6213e4760eb00a4df6f2563dea60cdad.tar.gz
libmicrohttpd-6c67437c6213e4760eb00a4df6f2563dea60cdad.zip
configure.ac: fixed typo in report text
-rw-r--r--configure.ac4
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 1340a212..f44802bf 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1261,9 +1261,9 @@ AC_SUBST([GNUTLS_LIBS])
1261 MHD_LIBDEPS_PKGCFG="$GNUTLS_LIBS $LIBGCRYPT_LIBS $MHD_LIBDEPS_PKGCFG" 1261 MHD_LIBDEPS_PKGCFG="$GNUTLS_LIBS $LIBGCRYPT_LIBS $MHD_LIBDEPS_PKGCFG"
1262 ]) 1262 ])
1263 ], [ 1263 ], [
1264 AS_IF([test "x$have_gnutls" = "xyes"], [crypt_missing="libgrypt"], 1264 AS_IF([test "x$have_gnutls" = "xyes"], [crypt_missing="libgcrypt"],
1265 [test "x$have_gcrypt" = "xyes"], [crypt_missing="libgnutls"], 1265 [test "x$have_gcrypt" = "xyes"], [crypt_missing="libgnutls"],
1266 [crypt_missing="libgrypt and libgnutls"]) 1266 [crypt_missing="libgcrypt and libgnutls"])
1267 AS_IF([[test "x$enable_https" = "xyes" ]], [AC_MSG_ERROR([[HTTPS support cannot be enabled without $crypt_missing.]])]) 1267 AS_IF([[test "x$enable_https" = "xyes" ]], [AC_MSG_ERROR([[HTTPS support cannot be enabled without $crypt_missing.]])])
1268 enable_https=no 1268 enable_https=no
1269 MSG_HTTPS="no (lacking $crypt_missing)" 1269 MSG_HTTPS="no (lacking $crypt_missing)"