diff options
author | Sebastian Hahn <sebastian@torproject.org> | 2017-04-29 08:51:51 +0200 |
---|---|---|
committer | Sebastian Hahn <sebastian@torproject.org> | 2017-04-29 08:55:57 +0200 |
commit | 915fa39d0f927712f7a468c0a2f4497aef0a3b0f (patch) | |
tree | 9e8d805a4b9bcbd30138ff79560708099469412d /src/or/include.am | |
parent | b8f7488e94f2cb83bdf83228781a11233d9f0a46 (diff) | |
download | tor-915fa39d0f927712f7a468c0a2f4497aef0a3b0f.tar.gz tor-915fa39d0f927712f7a468c0a2f4497aef0a3b0f.zip |
Add --enable-rust configure switch
Introduce a way to optionally enable Rust integration for our builds. No
actual Rust code is added yet and specifying the flag has no effect
other than failing the build if rustc and cargo are unavailable.
Diffstat (limited to 'src/or/include.am')
-rw-r--r-- | src/or/include.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/include.am b/src/or/include.am index 4c24dd23b3..ff7110ea99 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -123,7 +123,8 @@ src_or_tor_LDADD = src/or/libtor.a src/common/libor.a src/common/libor-ctime.a \ src/trace/libor-trace.a \ @TOR_ZLIB_LIBS@ @TOR_LIB_MATH@ @TOR_LIBEVENT_LIBS@ @TOR_OPENSSL_LIBS@ \ @TOR_LIB_WS32@ @TOR_LIB_GDI@ @CURVE25519_LIBS@ @TOR_SYSTEMD_LIBS@ \ - @TOR_LZMA_LIBS@ @TOR_ZSTD_LIBS@ + @TOR_LZMA_LIBS@ @TOR_ZSTD_LIBS@ \ + $(rust_ldadd) if COVERAGE_ENABLED src_or_tor_cov_SOURCES = src/or/tor_main.c |