diff options
author | Nick Mathewson <nickm@torproject.org> | 2019-06-13 11:59:17 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2019-06-24 15:11:57 -0400 |
commit | 458da8a80d356a0c8015f025828cd1523838ecac (patch) | |
tree | 9045b6848c8584580b717a8539feefa35e65caaa /Makefile.am | |
parent | 246599abb4dbfdb2f8ac073fc5b2059f602e8ed7 (diff) | |
download | tor-458da8a80d356a0c8015f025828cd1523838ecac.tar.gz tor-458da8a80d356a0c8015f025828cd1523838ecac.zip |
Move unit-parsing code to src/lib/confmgt
lib/confmgt is at a higher level than lib/conf, since it needs to
call down to logging and similar modules.
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 df30e0b59a..0083608ce9 100644 --- a/Makefile.am +++ b/Makefile.am @@ -54,6 +54,7 @@ TOR_UTIL_LIBS = \ src/lib/libtor-math.a \ src/lib/libtor-meminfo.a \ src/lib/libtor-osinfo.a \ + src/lib/libtor-confmgt.a \ src/lib/libtor-log.a \ src/lib/libtor-lock.a \ src/lib/libtor-fdio.a \ @@ -88,6 +89,7 @@ TOR_UTIL_TESTING_LIBS = \ src/lib/libtor-meminfo-testing.a \ src/lib/libtor-osinfo-testing.a \ src/lib/libtor-term-testing.a \ + src/lib/libtor-confmgt-testing.a \ src/lib/libtor-log-testing.a \ src/lib/libtor-lock-testing.a \ src/lib/libtor-fdio-testing.a \ |