diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-26 20:42:47 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-27 09:08:35 -0400 |
commit | 42b3caa6ad70106e7bca90bceca378b91045f545 (patch) | |
tree | c8835d313d8f569faa3936d7789afeb5491cd40f /Makefile.am | |
parent | 80730c45e032544155074022c0df5b6909b68faa (diff) | |
download | tor-42b3caa6ad70106e7bca90bceca378b91045f545.tar.gz tor-42b3caa6ad70106e7bca90bceca378b91045f545.zip |
Move network code to libtor-net.
There are some additional changes to come: those points are marked
by XXXX.
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 61451ed264..d80f81de10 100644 --- a/Makefile.am +++ b/Makefile.am @@ -40,6 +40,7 @@ endif # "Common" libraries used to link tor's utility code. TOR_UTIL_LIBS = \ src/common/libor.a \ + src/lib/libtor-net.a \ src/lib/libtor-log.a \ src/lib/libtor-lock.a \ src/lib/libtor-fdio.a \ @@ -55,6 +56,7 @@ TOR_UTIL_LIBS = \ # and tests) TOR_UTIL_TESTING_LIBS = \ src/common/libor-testing.a \ + src/lib/libtor-net-testing.a \ src/lib/libtor-log-testing.a \ src/lib/libtor-lock-testing.a \ src/lib/libtor-fdio-testing.a \ |