diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-26 12:13:23 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-26 12:13:23 -0400 |
commit | b1de1e7a77275ad3e8a65d984ff1e9779920e933 (patch) | |
tree | 1820cbdd2b983630cb0002bfc140a63f89af79c5 /src/include.am | |
parent | 860b9a991879c5be2b32cf98766adf5fdd349d41 (diff) | |
download | tor-b1de1e7a77275ad3e8a65d984ff1e9779920e933.tar.gz tor-b1de1e7a77275ad3e8a65d984ff1e9779920e933.zip |
Extract core part of smartlist code into its own library.
The smartlist_core library now contains only the parts of smartlists
that are needed for the logging library. This resolves the
circularity between "container" and "log".
The "containers" library still uses the logging code, and has the
higher-level smartlist functions.
Diffstat (limited to 'src/include.am')
-rw-r--r-- | src/include.am | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/include.am b/src/include.am index 1d2a037e90..9e89fc8e06 100644 --- a/src/include.am +++ b/src/include.am @@ -13,6 +13,7 @@ include src/lib/lock/include.am include src/lib/log/include.am include src/lib/malloc/include.am include src/lib/string/include.am +include src/lib/smartlist_core/include.am include src/lib/testsupport/include.am include src/lib/tls/include.am include src/lib/trace/include.am |