From f44820454cd5266a807041bd5e5ae36b4f4f6d84 Mon Sep 17 00:00:00 2001 From: Roland McGrath Date: Fri, 24 Nov 1995 10:00:21 +0000 Subject: [PATCH] Thu Nov 23 18:26:52 1995 Roland McGrath * configure.in (--enable-libio): Set $stdio based on $enableval, not always to libio. Thu Nov 23 18:06:48 1995 Richard Stallman * malloc/malloc.c (_malloc_internal): Can't use get_contiguous_space when the heap info table will be growing. Account for new contiguous space in _heaplimit. --- ChangeLog | 11 +++++++++++ configure.in | 7 ++++++- 2 files changed, 17 insertions(+), 1 deletion(-) diff --git a/ChangeLog b/ChangeLog index 6ef1a87a76..1317bd786a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,14 @@ +Thu Nov 23 18:26:52 1995 Roland McGrath + + * configure.in (--enable-libio): Set $stdio based on $enableval, + not always to libio. + +Thu Nov 23 18:06:48 1995 Richard Stallman + + * malloc/malloc.c (_malloc_internal): Can't use + get_contiguous_space when the heap info table + will be growing. Account for new contiguous space in _heaplimit. + Wed Nov 22 12:37:39 1995 Roland McGrath * sysdeps/unix/sysv/linux/i386/sysdep.S (_errno): Define as alias diff --git a/configure.in b/configure.in index e35769afb2..891859c0c0 100644 --- a/configure.in +++ b/configure.in @@ -55,7 +55,12 @@ AC_ARG_WITH(weak-symbols, dnl AC_ARG_ENABLE(libio, dnl [ --enable-libio build in GNU libio instead of GNU stdio], - stdio=libio, stdio=default) + [if test $enableval = yes; then + stdio=libio + else + stdio=stdio + fi], + stdio=default) dnl Arguments to enable or disable building the shared, profiled, and dnl -fomit-frame-pointer libraries. -- 2.11.4.GIT