summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1999-01-29 14:30:48 +0000
committerUlrich Drepper <drepper@redhat.com>1999-01-29 14:30:48 +0000
commit21ab6fb6bc4c2eb2b3a9b533d11942b45865aca5 (patch)
tree0d37ff443660a3e6ea29812bc8d6c65ec642da2a
parent4142edc3faaefe26335c5445a45ea9f0827e60a1 (diff)
Update.
* scripts/versions.awk: Quote { in regexp.
-rw-r--r--ChangeLog2
-rw-r--r--README4
-rw-r--r--scripts/versions.awk4
3 files changed, 6 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 3de4eab78a..5f1db4db07 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -2,6 +2,8 @@
* version.h (VERSION): Bump to 2.0.112.
+ * scripts/versions.awk: Quote { in regexp.
+
* sunrpc/clnt_tcp.c (clnttcp_call): Resolve 32-64 comparison
conflict for 64 bit platforms.
Patch by trott@rottmann.hi.shuttle.de.
diff --git a/README b/README
index 879b4aa414..03e0a783b4 100644
--- a/README
+++ b/README
@@ -1,4 +1,4 @@
-This directory contains the version 2.0.111 test release of the GNU C Library.
+This directory contains the version 2.0.112 test release of the GNU C Library.
Many bugs have been fixed since the last release.
Some bugs surely remain.
@@ -53,7 +53,7 @@ provides the Unix `crypt' function, plus some other entry points.
Because of the United States export restriction on DES implementations,
we are distributing this code separately from the rest of the C
library. There is an extra distribution tar file just for crypt; it is
-called `glibc-crypt-2.0.111.tar.gz'. You can just unpack the crypt
+called `glibc-crypt-2.0.112.tar.gz'. You can just unpack the crypt
distribution along with the rest of the C library and build; you can
also build the library without getting crypt. Users outside the USA
can get the crypt distribution via anonymous FTP from ftp.ifi.uio.no
diff --git a/scripts/versions.awk b/scripts/versions.awk
index f90248201b..f1223af32e 100644
--- a/scripts/versions.awk
+++ b/scripts/versions.awk
@@ -1,6 +1,6 @@
# Combine version map fragments into version files for the generated
# shared object.
-# (C) Copyright 1998 Free Software Foundation, Inc.
+# (C) Copyright 1998, 1999 Free Software Foundation, Inc.
# Written by Ulrich Drepper <drepper@cygnus.com>, 1998.
# This script expects the following variables to be defined:
@@ -12,7 +12,7 @@
BEGIN {
nlibs=0;
while (getline < defsfile) {
- if (/^[a-zA-Z0-9_]+ {/) {
+ if (/^[a-zA-Z0-9_]+ \{/) {
libs[$1] = 1;
curlib = $1;
while (getline < defsfile && ! /^}/) {