SSL_CTX_set_ecdh_auto is not defined in some old versions of OpenSSL Signed-off-by: Frediano Ziglio <fziglio@xxxxxxxxxx> --- configure.ac | 9 +++++++++ server/reds.c | 2 ++ 2 files changed, 11 insertions(+) diff --git a/configure.ac b/configure.ac index e12d7e854..49c009d4c 100644 --- a/configure.ac +++ b/configure.ac @@ -209,6 +209,15 @@ AC_SUBST(SSL_CFLAGS) AC_SUBST(SSL_LIBS) AS_VAR_APPEND([SPICE_REQUIRES], [" openssl"]) +save_CFLAGS="$CFLAGS" +CFLAGS="$CFLAGS $SSL_CFLAGS" +AC_CHECK_DECLS([SSL_CTX_set_ecdh_auto], [], [], [ +AC_INCLUDES_DEFAULT +#include <openssl/err.h> +#include <openssl/ssl.h> +]) +CFLAGS="$save_CFLAGS" + AC_CHECK_LIB(jpeg, jpeg_destroy_decompress, AC_MSG_CHECKING([for jpeglib.h]) AC_TRY_CPP( diff --git a/server/reds.c b/server/reds.c index 792e98381..b4061fbc3 100644 --- a/server/reds.c +++ b/server/reds.c @@ -2937,7 +2937,9 @@ static int reds_init_ssl(RedsState *reds) } SSL_CTX_set_options(reds->ctx, ssl_options); +#if HAVE_DECL_SSL_CTX_SET_ECDH_AUTO || defined(SSL_CTX_set_ecdh_auto) SSL_CTX_set_ecdh_auto(reds->ctx, 1); +#endif /* Load our keys and certificates*/ return_code = SSL_CTX_use_certificate_chain_file(reds->ctx, reds->config->ssl_parameters.certs_file); -- 2.20.1 _______________________________________________ Spice-devel mailing list Spice-devel@xxxxxxxxxxxxxxxxxxxxx https://lists.freedesktop.org/mailman/listinfo/spice-devel