[tor-commits] [tor/maint-0.4.2] configure: Stop failing when jemalloc is requested, but tcmalloc is not found
    nickm at torproject.org 
    nickm at torproject.org
       
    Fri Oct 18 16:43:25 UTC 2019
    
    
  
commit ac71ad662c80c034517dc882703f735df0648e21
Author: teor <teor at torproject.org>
Date:   Fri Oct 18 17:18:52 2019 +1000
    configure: Stop failing when jemalloc is requested, but tcmalloc is not found
    
    Fixes bug 32124; bugfix on 0.3.5.1-alpha.
---
 configure.ac | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index da74042dc..b8b745e98 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
 
    
    
More information about the tor-commits
mailing list