diff options
author | Chelsea Holland Komlo <me@chelseakomlo.com> | 2017-10-11 15:21:20 -0400 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2017-10-27 10:02:08 -0400 |
commit | be583a34a3815c2c10e86094ab0610e4b7f9c869 (patch) | |
tree | be9ffef37a21f54a81e628c1911c9171bbeef202 /configure.ac | |
parent | 0c04b54d4d78f7f3117948358b3d05e644fa1aeb (diff) | |
download | tor-be583a34a3815c2c10e86094ab0610e4b7f9c869.tar.gz tor-be583a34a3815c2c10e86094ab0610e4b7f9c869.zip |
use tor allocator for string allocation in rust
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index b2b353f6ba..e20a6b9904 100644 --- a/configure.ac +++ b/configure.ac @@ -441,11 +441,9 @@ if test "x$enable_rust" = "xyes"; then if test "$bwin32" = "true"; then TOR_RUST_UTIL_STATIC_NAME=tor_util.lib TOR_RUST_PROTOVER_STATIC_NAME=libprotover.lib - TOR_RUST_C_STRING_STATIC_NAME=libc_string.lib else TOR_RUST_UTIL_STATIC_NAME=libtor_util.a TOR_RUST_PROTOVER_STATIC_NAME=libprotover.a - TOR_RUST_C_STRING_STATIC_NAME=libc_string.a fi AC_SUBST(TOR_RUST_UTIL_STATIC_NAME) |