diff options
author | Jan-Marek Glogowski <glogow@fbihome.de> | 2020-07-17 22:51:39 +0200 |
---|---|---|
committer | Jan-Marek Glogowski <glogow@fbihome.de> | 2020-07-29 17:13:27 +0200 |
commit | 0c2653bd2e5470abf25a927e7e0fa75f1110ee7f (patch) | |
tree | 652bae2f3a2576e20dfdc7b408accb9462fe03f7 /configure.ac | |
parent | 2d2497dd3cea9ad01f7ade0b2bf4129083cd5875 (diff) |
configure: fix TLS result output
Change-Id: I488e287667a02bf9212b024420bb462deeeb052d
Reviewed-on: https://gerrit.libreoffice.org/c/core/+/99685
Tested-by: Jenkins
Reviewed-by: Jan-Marek Glogowski <glogow@fbihome.de>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index f651056fc11c..44f89e12f770 100644 --- a/configure.ac +++ b/configure.ac @@ -9718,6 +9718,7 @@ if test -n "$with_tls"; then openssl) AC_DEFINE(USE_TLS_OPENSSL) TLS=OPENSSL + AC_MSG_RESULT([$TLS]) if test "$enable_openssl" != "yes"; then AC_MSG_ERROR(["Disabling OpenSSL was requested, but the requested TLS to use is actually OpenSSL."]) @@ -9730,11 +9731,14 @@ if test -n "$with_tls"; then nss) AC_DEFINE(USE_TLS_NSS) TLS=NSS + AC_MSG_RESULT([$TLS]) ;; no) + AC_MSG_RESULT([none]) AC_MSG_WARN([Skipping TLS/SSL]) ;; *) + AC_MSG_RESULT([]) AC_MSG_ERROR([unsupported implementation $with_tls. Supported are: openssl - OpenSSL nss - Mozilla's Network Security Services (NSS) @@ -9745,8 +9749,8 @@ else # default to using NSS, it results in smaller oox lib AC_DEFINE(USE_TLS_NSS) TLS=NSS + AC_MSG_RESULT([$TLS]) fi -AC_MSG_RESULT([$TLS]) AC_SUBST(TLS) dnl =================================================================== |