From d86a68f510924d9afc4eec6970c68597783d245d Mon Sep 17 00:00:00 2001 From: Přemysl Janouch Date: Wed, 28 Dec 2016 12:40:47 +0100 Subject: Add support for OpenSSL 1.1.0 --- degesch.c | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'degesch.c') diff --git a/degesch.c b/degesch.c index 216ea0a..3263ae0 100644 --- a/degesch.c +++ b/degesch.c @@ -14009,10 +14009,15 @@ main (int argc, char *argv[]) app_context_init (&ctx); g_ctx = &ctx; +#if OPENSSL_VERSION_NUMBER < 0x10100000L SSL_library_init (); atexit (EVP_cleanup); SSL_load_error_strings (); atexit (ERR_free_strings); +#else + // Cleanup is done automatically via atexit() + OPENSSL_init_ssl (0, NULL); +#endif // Bootstrap configuration, so that we can access schema items at all register_config_modules (&ctx); -- cgit v1.2.3-54-g00ecf