From c71c357fa67e310fb38d978eb09cf4cc194bb1a2 Mon Sep 17 00:00:00 2001 From: Tatsuhiro Tsujikawa Date: Thu, 8 Oct 2015 22:50:51 +0900 Subject: [PATCH] src: Call OpenSSL_add_all_algorithms to attempt to set up cpuid explicitly See GH-377 --- src/ssl.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/src/ssl.cc b/src/ssl.cc index 4fb0413f..bfb531f8 100644 --- a/src/ssl.cc +++ b/src/ssl.cc @@ -702,6 +702,7 @@ void libssl_init() { #endif // OPENSSL_IS_BORINGSSL SSL_load_error_strings(); SSL_library_init(); + OpenSSL_add_all_algorithms(); } } // namespace ssl