diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-28 16:25:06 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-28 16:28:08 -0400 |
commit | d8b34e0886c9fd08fb51e0de4fadca7da82056ff (patch) | |
tree | 5b2a8cea0d0a683f7ab1e71a158c28021f9dfb99 /src/lib/compress/include.am | |
parent | be40ad51b68fa87bafb88e55db7856d373274a4d (diff) | |
download | tor-d8b34e0886c9fd08fb51e0de4fadca7da82056ff.tar.gz tor-d8b34e0886c9fd08fb51e0de4fadca7da82056ff.zip |
Move buffers into container
Split the network-only and compression-only parts of buffers into
the appropriate modules.
Diffstat (limited to 'src/lib/compress/include.am')
-rw-r--r-- | src/lib/compress/include.am | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/compress/include.am b/src/lib/compress/include.am index eb3a89c355..75c9032bd2 100644 --- a/src/lib/compress/include.am +++ b/src/lib/compress/include.am @@ -5,8 +5,9 @@ if UNITTESTS_ENABLED noinst_LIBRARIES += src/lib/libtor-compress-testing.a endif -src_lib_libtor_compress_a_SOURCES = \ +src_lib_libtor_compress_a_SOURCES = \ src/lib/compress/compress.c \ + src/lib/compress/compress_buf.c \ src/lib/compress/compress_lzma.c \ src/lib/compress/compress_none.c \ src/lib/compress/compress_zlib.c \ |