diff options
author | Alexander Færøy <ahf@torproject.org> | 2017-04-18 17:54:59 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-04-25 08:10:09 -0400 |
commit | ce1feae9d9a4366e3cd93a68416841d0c6a636c5 (patch) | |
tree | 9b6fecb4f93f3d7663a13f585ad428276f23ce4b /src/or/include.am | |
parent | bf1c07cb07c27ca65ab66cf41442cfaabd9bb067 (diff) | |
download | tor-ce1feae9d9a4366e3cd93a68416841d0c6a636c5.tar.gz tor-ce1feae9d9a4366e3cd93a68416841d0c6a636c5.zip |
Add --enable-zstd to our configure script.
This patch adds support for enabling support for Zstandard to our configure
script. By default, the --enable-zstd option is set to "auto" which means if
libzstd is available we'll build Tor with Zstandard support.
See: https://bugs.torproject.org/21662
Diffstat (limited to 'src/or/include.am')
-rw-r--r-- | src/or/include.am | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/include.am b/src/or/include.am index d4dc6a90ce..d001fcfa3a 100644 --- a/src/or/include.am +++ b/src/or/include.am @@ -121,7 +121,7 @@ src_or_tor_LDADD = src/or/libtor.a src/common/libor.a src/common/libor-ctime.a \ src/common/libor-event.a src/trunnel/libor-trunnel.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_LZMA_LIBS@ @TOR_ZSTD_LIBS@ if COVERAGE_ENABLED src_or_tor_cov_SOURCES = src/or/tor_main.c @@ -134,7 +134,7 @@ src_or_tor_cov_LDADD = src/or/libtor-testing.a src/common/libor-testing.a \ src/common/libor-event-testing.a src/trunnel/libor-trunnel-testing.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_LZMA_LIBS@ @TOR_ZSTD_LIBS@ endif ORHEADERS = \ |