diff options
author | Nick Mathewson <nickm@torproject.org> | 2018-06-21 15:17:54 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-06-21 15:20:01 -0400 |
commit | e066966bf48b4f6ca557175cb2ab3e2dffa5b1db (patch) | |
tree | 7cd9b093bddd06349629426fe3a404cb4947b14c /Makefile.am | |
parent | eb784aa9eaced1adb436d752ccdbeb2ff19c9e23 (diff) | |
download | tor-e066966bf48b4f6ca557175cb2ab3e2dffa5b1db.tar.gz tor-e066966bf48b4f6ca557175cb2ab3e2dffa5b1db.zip |
Extract tor_malloc and friends to a new module.
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 38e79eb7c5..960417df9d 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-malloc.a \ src/lib/libtor-err.a \ src/lib/libtor-ctime.a @@ -47,6 +48,7 @@ TOR_UTIL_LIBS = \ # and tests) TOR_UTIL_TESTING_LIBS = \ src/common/libor-testing.a \ + src/lib/libtor-malloc-testing.a \ src/lib/libtor-err-testing.a \ src/lib/libtor-ctime-testing.a |