aboutsummaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorteor <teor@torproject.org>2019-10-18 17:18:52 +1000
committerteor <teor@torproject.org>2019-10-18 17:18:52 +1000
commitac71ad662c80c034517dc882703f735df0648e21 (patch)
treef7546a91d56fb8fc1e46fcf04994dad51bdd1650 /configure.ac
parent4442eef0b3d308008992ae71fcd78ba52f305cd7 (diff)
downloadtor-ac71ad662c80c034517dc882703f735df0648e21.tar.gz
tor-ac71ad662c80c034517dc882703f735df0648e21.zip
configure: Stop failing when jemalloc is requested, but tcmalloc is not found
Fixes bug 32124; bugfix on 0.3.5.1-alpha.
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index da74042dc8..b8b745e980 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1934,7 +1934,7 @@ AS_CASE([$malloc],
have_jemalloc=yes,
have_jemalloc=no)
- if test "x$have_tcmalloc" = "xno" ; then
+ if test "x$have_jemalloc" = "xno" ; then
AC_MSG_ERROR([Unable to find jemalloc requested by --with-malloc, $pkg_config_user_action, or set JEMALLOC_CFLAGS and JEMALLOC_LIBS.])
fi