Kaydet (Commit) fd6d4239 authored tarafından Andres Gomez's avatar Andres Gomez Kaydeden (comit) David Tardon

build: warn when configure with --with-tls=openssl

When expliciting openssl as tls implementation to
use, show a warning as there are still some pieces
of code that may depend on NSS or GNUTLS.

Change-Id: I2cfaaf09b5ad83837928f2648975db956b261c19
Reviewed-on: https://gerrit.libreoffice.org/3327Reviewed-by: 's avatarDavid Tardon <dtardon@redhat.com>
Tested-by: 's avatarDavid Tardon <dtardon@redhat.com>
üst 1e53d3b8
......@@ -8109,6 +8109,10 @@ if test -n "$with_tls"; then
openssl)
AC_DEFINE(USE_TLS_OPENSSL)
TLS=OPENSSL
# warn that OpenSSL has been selected but not all TLS code has this option
AC_MSG_WARN([TLS/SSL implementation to use is OpenSSL but some code may still be depending on NSS or GNUTLS])
add_warning "TLS/SSL implementation to use is OpenSSL but some code may still be depending on NSS or GNUTLS"
;;
nss)
AC_DEFINE(USE_TLS_NSS)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment