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/test/fuzz | |
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/test/fuzz')
-rw-r--r-- | src/test/fuzz/include.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/test/fuzz/include.am b/src/test/fuzz/include.am index abffcad602..500377f6d7 100644 --- a/src/test/fuzz/include.am +++ b/src/test/fuzz/include.am @@ -19,7 +19,8 @@ FUZZING_LIBS = \ @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@ oss-fuzz-prereqs: \ src/or/libtor-testing.a \ |