diff options
author | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-23 16:09:56 +0000 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2017-12-23 16:14:49 +0000 |
commit | 1a271d25a15fcfe4ee4c687257dcf30755ce7ca9 (patch) | |
tree | 5c0598f0dccf1dc661419a752453717bef639596 /external | |
parent | Merge pull request #2961 (diff) | |
download | monero-1a271d25a15fcfe4ee4c687257dcf30755ce7ca9.tar.xz |
unbound: enable SHA1
Fixes the unit test failure about SHA1 being unavailable,
and hopefully the monerod complaints about not being able
to verify DNSSEC.
Thanks to iDunk for the remote Windows testing.
Diffstat (limited to 'external')
-rw-r--r-- | external/unbound/CMakeLists.txt | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/external/unbound/CMakeLists.txt b/external/unbound/CMakeLists.txt index a2e475232..99ef62c5a 100644 --- a/external/unbound/CMakeLists.txt +++ b/external/unbound/CMakeLists.txt @@ -53,6 +53,7 @@ add_definitions(-std=c99) option(USE_ECDSA "Use ECDSA algorithms" ON) option(USE_SHA2 "Enable SHA2 support" ON) +option(USE_SHA1 "Enable SHA1 support" ON) set(ENABLE_DNSTAP 0) set(HAVE_SSL 1) if (CMAKE_USE_PTHREADS_INIT AND NOT CMAKE_USE_WIN32_THREADS_INIT) |