diff options
author | Alexander Færøy <ahf@torproject.org> | 2017-04-18 13:56:02 +0200 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-04-25 08:06:02 -0400 |
commit | 157af1d26e3cdfc3159c1085f35e5ddcda7ccd21 (patch) | |
tree | ce2a95e5012ed28837018c05ea26fff73a4b3868 /Makefile.am | |
parent | c171af048731cc00d77e17a1ff0be5c641024f8a (diff) | |
download | tor-157af1d26e3cdfc3159c1085f35e5ddcda7ccd21.tar.gz tor-157af1d26e3cdfc3159c1085f35e5ddcda7ccd21.zip |
Add --enable-lzma to our configure script.
This patch adds support for enabling support for LZMA to our configure
script. By default, the --enable-lzma option is set to "auto" which
means if liblzma is available we'll build Tor with LZMA support.
See: https://bugs.torproject.org/21662
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am index aeac0b85c4..0f59ebee4c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -16,7 +16,7 @@ noinst_PROGRAMS= DISTCLEANFILES= bin_SCRIPTS= AM_CPPFLAGS= -AM_CFLAGS=@TOR_SYSTEMD_CFLAGS@ @CFLAGS_BUGTRAP@ +AM_CFLAGS=@TOR_SYSTEMD_CFLAGS@ @CFLAGS_BUGTRAP@ @TOR_LZMA_CFLAGS@ SHELL=@SHELL@ if COVERAGE_ENABLED |