]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
configure: Stop failing when jemalloc is requested, but tcmalloc is not found
authorteor <teor@torproject.org>
Fri, 18 Oct 2019 07:18:52 +0000 (17:18 +1000)
committerteor <teor@torproject.org>
Fri, 18 Oct 2019 07:18:52 +0000 (17:18 +1000)
Fixes bug 32124; bugfix on 0.3.5.1-alpha.

configure.ac

index da74042dc8a0992e8163fd69e244d9c627d64dda..b8b745e980ae0d68823aca0b667fac3d1cf2edbf 100644 (file)
@@ -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