diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-09-27 10:26:01 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-27 10:26:01 -0400 |
commit | c8f2a6d2fe17fb1c02116fddaa93ded0ce655af9 (patch) | |
tree | f44c26b004897d9d646069a0e3131263ba9ddc31 /Makefile.am | |
parent | fa32574bdb7381f02abc68ad917ad79f354938a4 (diff) | |
download | tor-c8f2a6d2fe17fb1c02116fddaa93ded0ce655af9.tar.gz tor-c8f2a6d2fe17fb1c02116fddaa93ded0ce655af9.zip |
Extract the non-stats part of geoip into a new src/lib/geoip.
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 36a5dd2e9e..a0f513c75e 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/lib/libtor-geoip.a \ src/lib/libtor-process.a \ src/lib/libtor-time.a \ src/lib/libtor-fs.a \ @@ -68,6 +69,7 @@ TOR_UTIL_LIBS = \ # and tests) if UNITTESTS_ENABLED TOR_UTIL_TESTING_LIBS = \ + src/lib/libtor-geoip-testing.a \ src/lib/libtor-process-testing.a \ src/lib/libtor-time-testing.a \ src/lib/libtor-fs-testing.a \ |