diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2018-09-11 19:39:00 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-12-01 14:31:17 -0500 |
commit | 30582b940e22897e68c50d4d0c9c36f82472e9b2 (patch) | |
tree | acd7a4d00564a8a1a6d175d1d094ef5fdbe762f3 /src/tools | |
parent | a2bb172225e1eecc9e93da655a0d316c4b214ff6 (diff) | |
download | tor-30582b940e22897e68c50d4d0c9c36f82472e9b2.tar.gz tor-30582b940e22897e68c50d4d0c9c36f82472e9b2.zip |
tor-resolve: link tor-resolve binary with trunnel lib
Diffstat (limited to 'src/tools')
-rw-r--r-- | src/tools/include.am | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/include.am b/src/tools/include.am index f7aa7e0d1e..352d4b5328 100644 --- a/src/tools/include.am +++ b/src/tools/include.am @@ -5,9 +5,11 @@ noinst_PROGRAMS+= src/tools/tor-cov-resolve endif src_tools_tor_resolve_SOURCES = src/tools/tor-resolve.c -src_tools_tor_resolve_LDFLAGS = +src_tools_tor_resolve_LDFLAGS = @TOR_LDFLAGS_openssl@ src_tools_tor_resolve_LDADD = \ + src/trunnel/libor-trunnel.a \ $(TOR_UTIL_LIBS) \ + $(TOR_CRYPTO_LIBS) $(TOR_LIBS_CRYPTLIB)\ $(rust_ldadd) \ @TOR_LIB_MATH@ @TOR_LIB_WS32@ @TOR_LIB_IPHLPAPI@ @TOR_LIB_USERENV@ |