diff options
author | Hans Nilsson <hans@erlang.org> | 2022-02-18 14:17:33 +0100 |
---|---|---|
committer | Hans Nilsson <hans@erlang.org> | 2022-02-21 16:53:44 +0100 |
commit | fcac7ee479e29cb0705a00d4db771d5518c09b1e (patch) | |
tree | 03ea63891f0663c900381a683d2aefb9c1e03327 /lib | |
parent | abf56309d76647276284f412a1c459e6edc1859b (diff) | |
download | erlang-fcac7ee479e29cb0705a00d4db771d5518c09b1e.tar.gz |
crypto: Warn in config for 3.0 staticly linked
Diffstat (limited to 'lib')
-rw-r--r-- | lib/crypto/configure.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/crypto/configure.in b/lib/crypto/configure.in index f5ebda50ff..35acc7e532 100644 --- a/lib/crypto/configure.in +++ b/lib/crypto/configure.in @@ -816,6 +816,11 @@ if test "x$v3_include" = "xyes"; then echo "Using OpenSSL 3.0 is not yet recommended for production code." >> ./CONF_INFO AC_MSG_WARN(******************************************************************) AC_MSG_WARN(* Using OpenSSL 3.0 is not yet recommended for production code. *) + + if test "x$SSL_DYNAMIC_ONLY" = "xno" ; then + echo "Static linking with OpenSSL 3.0 *MAY* require special configuring of the cryptolib." >> ./CONF_INFO + AC_MSG_WARN(* Static linking *MAY* require re-configuring the 3.0 cryptolib. *) + fi AC_MSG_WARN(******************************************************************) fi |