diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-06-16 23:11:09 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-06-16 23:11:09 +0000 |
commit | 0013b2b1dfeaee971eec0d0d16598166229d856b (patch) | |
tree | f0c804ab4097d0e70696d2deb6c3223ec95179e8 | |
parent | d64b6ad07585b8a37e5fecc9a47fcee766d52ede (diff) | |
download | glibc-0013b2b1dfeaee971eec0d0d16598166229d856b.zip glibc-0013b2b1dfeaee971eec0d0d16598166229d856b.tar.gz glibc-0013b2b1dfeaee971eec0d0d16598166229d856b.tar.bz2 |
Update.
* configure.in: Add warnings about broken code.
-rw-r--r-- | ChangeLog | 2 | ||||
-rw-r--r-- | NEWS | 4 | ||||
-rwxr-xr-x | configure | 4 | ||||
-rw-r--r-- | configure.in | 4 |
4 files changed, 13 insertions, 1 deletions
@@ -1,5 +1,7 @@ 1999-06-16 Ulrich Drepper <drepper@cygnus.com> + * configure.in: Add warnings about broken code. + * Versions.def: Add GLIBC_2.2 for libc. * iconv/gconv.h: Make header suitable for inclusion in public header @@ -1,4 +1,4 @@ -GNU C Library NEWS -- history of user-visible changes. 1999-05-18 +GNU C Library NEWS -- history of user-visible changes. 1999-06-16 Copyright (C) 1992, 93, 94, 95, 96, 97, 98, 99 Free Software Foundation, Inc. See the end for copying conditions. @@ -13,6 +13,8 @@ Version 2.2 * Update from Berkeley db 2.7.5. +* Wide character I/O streams implemented by Ulrich Drepper. + Version 2.1.1 @@ -3082,6 +3082,10 @@ RELEASE=`sed -n -e 's/^#define RELEASE "\([^"]*\)"/\1/p' < $srcdir/version.h` +echo '*** Do NOT install this release on any production system!' +echo '*** It is known to be broken and will be so for quite some time.' +echo '*** Use the latest released version instead.' + trap '' 1 2 15 cat > confcache <<\EOF # This file is a shell script that caches the results of configure diff --git a/configure.in b/configure.in index 17ac906..ba48a18 100644 --- a/configure.in +++ b/configure.in @@ -1236,6 +1236,10 @@ RELEASE=`sed -n -e 's/^#define RELEASE "\([^"]*\)"/\1/p' < $srcdir/version.h` AC_SUBST(VERSION) AC_SUBST(RELEASE) +echo '*** Do NOT install this release on any production system!' +echo '*** It is known to be broken and will be so for quite some time.' +echo '*** Use the latest released version instead.' + AC_OUTPUT(config.make glibcbug ${config_makefile} ${config_uname}, [ case $CONFIG_FILES in *config.make*) echo "$config_vars" >> config.make;; |