summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorTrond Norbye <Trond.Norbye@sun.com>2009-01-28 10:49:35 +0100
committerDustin Sallings <dustin@spy.net>2009-01-29 13:41:02 -0800
commitd675caba17f30709adcc7d0b1e44edfbd1619c1a (patch)
tree43288323ece206a8dacb5efd8905cd5dd4683e10 /configure.ac
parent74908abc795f896708764127be8879f7c48e0902 (diff)
downloadmemcached-d675caba17f30709adcc7d0b1e44edfbd1619c1a.tar.gz
Remove stats malloc and stats maps
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac18
1 files changed, 0 insertions, 18 deletions
diff --git a/configure.ac b/configure.ac
index 6e6ed70..bfe0243 100644
--- a/configure.ac
+++ b/configure.ac
@@ -143,24 +143,6 @@ AC_SEARCH_LIBS(gethostbyname, nsl)
AC_HEADER_STDBOOL
AC_C_CONST
-# We don't want to enable mallinfo on Solaris, because that will enable
-# libmalloc and from the manpage: These routines are space-efficient but
-# have lower performance. Their usage can result in serious performance
-# degradation.
-case "$target_os" in
- *solaris*)
- ;;
- *)
- AC_CHECK_HEADER(malloc.h, AC_DEFINE(HAVE_MALLOC_H,,[do we have malloc.h?]))
- AC_CHECK_MEMBER([struct mallinfo.arena], [
- AC_DEFINE(HAVE_STRUCT_MALLINFO,,[do we have stuct mallinfo?])
- ], ,[
-#include <malloc.h>
- ])
- AC_SEARCH_LIBS(mallinfo, malloc)
- ;;
-esac
-
dnl From licq: Copyright (c) 2000 Dirk Mueller
dnl Check if the type socklen_t is defined anywhere
AC_DEFUN([AC_C_SOCKLEN_T],