From b05a95cbefcc974fb7188d787bf2a9c30d3849ca Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Wed, 9 Apr 1997 03:52:47 +0000 Subject: [PATCH] If malloc_{get,set}_state exist, set DOUG_LEA_MALLOC. --- configure.in | 11 +++++++++-- 1 file changed, 9 insertions(+), 2 deletions(-) diff --git a/configure.in b/configure.in index 97c21d9804..0452c25527 100644 --- a/configure.in +++ b/configure.in @@ -1281,10 +1281,17 @@ UNEXEC_SRC="`echo ${unexec} | sed 's/\.o/.c/'`" # Do the opsystem or machine files prohibit the use of the GNU malloc? # Assume not, until told otherwise. GNU_MALLOC=yes -if test "${system_malloc}" = "yes"; then +doug_lea_malloc=yes +AC_CHECK_FUNC(malloc_get_state, ,doug_lea_malloc=no) +AC_CHECK_FUNC(malloc_set_state, ,doug_lea_malloc=no) +if test "$doug_lea_malloc" = "yes" ; then + GNU_MALLOC_reason=" + (Using new Doug Lea's new malloc from the GNU C Library.)" + AC_DEFINE(DOUG_LEA_MALLOC) +elif test "${system_malloc}" = "yes"; then GNU_MALLOC=no GNU_MALLOC_reason=" - (The GNU allocators don't work with this system configuration.)" + (The GNU allocators don't work with this system configuration.)" fi if test x"${REL_ALLOC}" = x; then -- 2.39.2