diff options
author | Micah Elizabeth Scott <beth@torproject.org> | 2023-03-09 15:28:56 -0800 |
---|---|---|
committer | Micah Elizabeth Scott <beth@torproject.org> | 2023-05-10 07:38:28 -0700 |
commit | bfa2102c955e0dc81af0821760c45d787eac8e1e (patch) | |
tree | 819b955529412abe212cfc25dec692ce8db5f77b /configure.ac | |
parent | ffa8531fe0f495e45ade4910b7a1c0d7e56d78ba (diff) | |
download | tor-bfa2102c955e0dc81af0821760c45d787eac8e1e.tar.gz tor-bfa2102c955e0dc81af0821760c45d787eac8e1e.zip |
hs_pow: Replace libb2 dependency with hashx's internal blake2
This forgoes another external library dependency, and instead
introduces a compatibility header so that interested parties
(who already depend on equix, like hs_pow and unit tests) can
use the implementation of blake2b included in hashx.
Signed-off-by: Micah Elizabeth Scott <beth@torproject.org>
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac index eaef9d2703..2b20965d68 100644 --- a/configure.ac +++ b/configure.ac @@ -435,9 +435,6 @@ AC_DEFUN([ADD_MODULE], [ m4_foreach_w([module], MODULES, [ADD_MODULE([module])]) AC_SUBST(TOR_MODULES_ALL_ENABLED) -dnl Blake2 check for Equi-X support. -PKG_CHECK_MODULES([LIBB2], [libb2]) - dnl check for the correct "ar" when cross-compiling. dnl (AM_PROG_AR was new in automake 1.11.2, which we do not yet require, dnl so kludge up a replacement for the case where it isn't there yet.) |