about summary refs log tree commit diff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>2002-08-28 11:45:37 +0000
committerUlrich Drepper <drepper@redhat.com>2002-08-28 11:45:37 +0000
commit9cce206e724431f941600aefef4905c0cd496dcb (patch)
tree413e0a43b34ac5ba959847a6393c68a1330b1583
parent47b7bcd64e405a30b66ad7147f0d3f832c83e00d (diff)
downloadglibc-9cce206e724431f941600aefef4905c0cd496dcb.tar.gz
glibc-9cce206e724431f941600aefef4905c0cd496dcb.tar.xz
glibc-9cce206e724431f941600aefef4905c0cd496dcb.zip
Update.
2002-08-28  Ulrich Drepper  <drepper@redhat.com>

	* version.h (VERSION): Bump to 2.2.91.

	* configure.in: Disable TLS support by default for now.

	* sysdeps/i386/fpu/libm-test-ulps: Adjust ulp for yn for float.

	* sysdeps/generic/strtol.c (strtol): Add some more casts to avoid
	warnings.

	* stdlib/strtod.c (STRTOF): Correct type in cast of last patch.

	* stdlib/fmtmsg.c (fmtmsg): Use correct test for failure of
	fprintf/fwprintf calls.
-rw-r--r--ChangeLog16
-rw-r--r--README2
-rwxr-xr-xconfigure4
-rw-r--r--configure.in5
-rw-r--r--version.h2
5 files changed, 23 insertions, 6 deletions
diff --git a/ChangeLog b/ChangeLog
index 0c18dd87ed..e1ef7924d0 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,19 @@
+2002-08-28  Ulrich Drepper  <drepper@redhat.com>
+
+	* version.h (VERSION): Bump to 2.2.91.
+
+	* configure.in: Disable TLS support by default for now.
+
+	* sysdeps/i386/fpu/libm-test-ulps: Adjust ulp for yn for float.
+
+	* sysdeps/generic/strtol.c (strtol): Add some more casts to avoid
+	warnings.
+
+	* stdlib/strtod.c (STRTOF): Correct type in cast of last patch.
+
+	* stdlib/fmtmsg.c (fmtmsg): Use correct test for failure of
+	fprintf/fwprintf calls.
+
 2002-08-28  Roland McGrath  <roland@redhat.com>
 
 	* Makeconfig (run-program-prefix): Fix bogus use of $(findstring ...)
diff --git a/README b/README
index 121b6830e3..9b17f1e1c8 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-This directory contains the version 2.2.90 release of the GNU C Library.
+This directory contains the version 2.2.91 release of the GNU C Library.
 Many bugs have been fixed since the last release.
 Some bugs surely remain.
 
diff --git a/configure b/configure
index 14b2fa9968..dbbeecd86e 100755
--- a/configure
+++ b/configure
@@ -66,7 +66,7 @@ ac_help="$ac_help
 			  configure and build add-ons in DIR1,DIR2,...
                           search for add-ons if no parameter given"
 ac_help="$ac_help
-  --without-tls           prevent support for TLS"
+  --with-tls              enable support for TLS"
 ac_help="$ac_help
   --enable-static-nss     build static NSS modules [default=no]"
 ac_help="$ac_help
@@ -819,7 +819,7 @@ if test "${with_tls+set}" = set; then
   withval="$with_tls"
   usetls=$withval
 else
-  usetls=yes
+  usetls=no
 fi
 
 
diff --git a/configure.in b/configure.in
index a467745635..025586fa3d 100644
--- a/configure.in
+++ b/configure.in
@@ -140,9 +140,10 @@ AC_ARG_ENABLE(add-ons, dnl
   [add_ons=])
 
 dnl Let the user avoid using TLS.  Don't know why but...
+dnl XXX For now we disable support by default.
 AC_ARG_WITH(tls, dnl
-[  --without-tls           prevent support for TLS],
-	    usetls=$withval, usetls=yes)
+[  --with-tls              enable support for TLS],
+	    usetls=$withval, usetls=no)
 
 AC_CONFIG_SUBDIRS($add_ons)
 add_ons_pfx=
diff --git a/version.h b/version.h
index 4fcd6c6268..bfcb7f1203 100644
--- a/version.h
+++ b/version.h
@@ -1,4 +1,4 @@
 /* This file just defines the current version number of libc.  */
 
 #define RELEASE "development"
-#define VERSION "2.2.90"
+#define VERSION "2.2.91"