From 3ac6f3a7487b9e231d4d83056685a5b1349d2deb Mon Sep 17 00:00:00 2001 From: Jeff Johnston Date: Sat, 21 Apr 2001 01:17:33 +0000 Subject: 2001-04-20 Jeff Johnston * acinclude.m4: Added --enable-malloc-debugging configure flag. * configure.host: For Cygwin specify -DMALLOC_PROVIDED if --enable-malloc-debugging selected. * aclocal.m4 configure: Regenerated. libm/aclocal.m4 libm/configure: Ditto. * libc/aclocal.m4 libc/configure: Ditto. * libc/machine/aclocal.m4 libc/machine/configure: Ditto. * libc/machine/*/aclocal.m4 libc/machine/*/configure: Ditto. * libc/sys/aclocal.m4 libc/sys/configure: Ditto. * libc/sys/*/aclocal.m4 libc/sys/*/configure: Ditto. * doc/aclocal.m4 doc/configure: Ditto. --- newlib/doc/aclocal.m4 | 9 +++++++++ 1 file changed, 9 insertions(+) (limited to 'newlib/doc/aclocal.m4') diff --git a/newlib/doc/aclocal.m4 b/newlib/doc/aclocal.m4 index 63f6d033d..31ccc384b 100644 --- a/newlib/doc/aclocal.m4 +++ b/newlib/doc/aclocal.m4 @@ -38,6 +38,15 @@ AC_ARG_ENABLE(target-optspace, *) AC_MSG_ERROR(bad value ${enableval} for target-optspace option) ;; esac], [target_optspace=])dnl +dnl Support --enable-malloc-debugging - currently only supported for Cygwin +AC_ARG_ENABLE(malloc-debugging, +[ --enable-malloc-debugging indicate malloc debugging requested], +[case "${enableval}" in + yes) malloc_debugging=yes ;; + no) malloc_debugging=no ;; + *) AC_MSG_ERROR(bad value ${enableval} for malloc-debugging option) ;; + esac], [malloc_debugging=])dnl + dnl Support --enable-newlib-mb AC_ARG_ENABLE(newlib-mb, [ --enable-newlib-mb enable multibyte support], -- cgit v1.2.3