diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-11-06 18:05:14 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-11-14 16:07:03 -0500 |
commit | f6b8c7da66bf93a9505b397661616cc4af2a34f6 (patch) | |
tree | 539837644546df6f7d7ec7b40d43843674d3a83d /Makefile.am | |
parent | c9f9c9bc497bbfdd5e1acdc37f84da5f3f7396c2 (diff) | |
download | tor-f6b8c7da66bf93a9505b397661616cc4af2a34f6.tar.gz tor-f6b8c7da66bf93a9505b397661616cc4af2a34f6.zip |
Move buffers.c out of lib/containers to resolve a circularity.
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index cb76edfa2f..99dec36e36 100644 --- a/Makefile.am +++ b/Makefile.am @@ -42,6 +42,7 @@ endif TOR_UTIL_LIBS = \ src/lib/libtor-geoip.a \ src/lib/libtor-process.a \ + src/lib/libtor-buf.a \ src/lib/libtor-time.a \ src/lib/libtor-fs.a \ src/lib/libtor-encoding.a \ @@ -72,6 +73,7 @@ if UNITTESTS_ENABLED TOR_UTIL_TESTING_LIBS = \ src/lib/libtor-geoip-testing.a \ src/lib/libtor-process-testing.a \ + src/lib/libtor-buf-testing.a \ src/lib/libtor-time-testing.a \ src/lib/libtor-fs-testing.a \ src/lib/libtor-encoding-testing.a \ |