From 1b8844c26318b91021606e729a604eb47cb37098 Mon Sep 17 00:00:00 2001 From: Jaroslav Rohel Date: Tue, 9 Apr 2019 10:20:16 +0200 Subject: [PATCH] Use OpenSSL for computing hashes by default --- CMakeLists.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index b2a0b72..3450526 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -38,7 +38,7 @@ OPTION (ENABLE_ZSTD_COMPRESSION "Build with zstd compression support?" OFF) OPTION (ENABLE_ZCHUNK_COMPRESSION "Build with zchunk compression support?" OFF) OPTION (WITH_SYSTEM_ZCHUNK "Use system zchunk library?" OFF) OPTION (WITH_LIBXML2 "Build with libxml2 instead of libexpat?" OFF) -OPTION (WITH_OPENSSL "Use OpenSSL instead of internal implementation of hashes?" OFF) +OPTION (WITH_OPENSSL "Use OpenSSL instead of internal implementation of hashes?" ON) # Library IF (DEFINED LIB) -- libgit2 0.27.8