diff options
author | Roland McGrath <roland@gnu.org> | 1995-11-24 10:00:21 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-11-24 10:00:21 +0000 |
commit | f44820454cd5266a807041bd5e5ae36b4f4f6d84 (patch) | |
tree | 735a61a88221a522e93ee6d4aeac29472cbc81ae /configure.in | |
parent | 42d2676e7ccdad60b91f1f90855db164c833ca9f (diff) | |
download | glibc-f44820454cd5266a807041bd5e5ae36b4f4f6d84.zip glibc-f44820454cd5266a807041bd5e5ae36b4f4f6d84.tar.gz glibc-f44820454cd5266a807041bd5e5ae36b4f4f6d84.tar.bz2 |
Thu Nov 23 18:26:52 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>cvs/libc-951126cvs/libc-951125cvs/libc-951124
* configure.in (--enable-libio): Set $stdio based on $enableval,
not always to libio.
Thu Nov 23 18:06:48 1995 Richard Stallman <rms@gnu.ai.mit.edu>
* 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.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/configure.in b/configure.in index e35769a..891859c 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. |