diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 09:53:08 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-21 10:47:11 -0400 |
commit | 2cfcb7b364541c27749ae0df73eabd7a56797f93 (patch) | |
tree | 1fb03761e4631f1d5edd893fc9164a49ff8981b6 /Makefile.am | |
parent | b2346b12019c45288bbae3bd009fe0bafe80ff58 (diff) | |
download | tor-2cfcb7b364541c27749ae0df73eabd7a56797f93.tar.gz tor-2cfcb7b364541c27749ae0df73eabd7a56797f93.zip |
Extract error functionality into a new lowest-level library.
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 579b9a089c..6c60de111c 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,12 +40,14 @@ endif # "Common" libraries used to link tor's utility code. TOR_UTIL_LIBS = \ src/common/libor.a \ + src/lib/libtor-err.a \ src/common/libor-ctime.a # Variants of the above for linking the testing variant of tor (for coverage # and tests) TOR_UTIL_TESTING_LIBS = \ src/common/libor-testing.a \ + src/lib/libtor-err-testing.a \ src/common/libor-ctime-testing.a # Internal crypto libraries used in Tor |