mirror of git://sourceware.org/git/glibc.git
Update.
* manual/Makefile (examples): Filter out the example code from add-ons.
This commit is contained in:
parent
47d805f646
commit
1b1594b3ad
|
|
@ -1,5 +1,8 @@
|
||||||
1999-01-14 Ulrich Drepper <drepper@cygnus.com>
|
1999-01-14 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* manual/Makefile (examples): Filter out the example code from
|
||||||
|
add-ons.
|
||||||
|
|
||||||
* version.h (VERSION): Bump to 2.0.110.
|
* version.h (VERSION): Bump to 2.0.110.
|
||||||
|
|
||||||
* nis/nis_error.c (nis_errlist): Fix typo in string.
|
* nis/nis_error.c (nis_errlist): Fix typo in string.
|
||||||
|
|
|
||||||
4
README
4
README
|
|
@ -1,4 +1,4 @@
|
||||||
This directory contains the version 2.0.109 test release of the GNU C Library.
|
This directory contains the version 2.0.110 test release of the GNU C Library.
|
||||||
Many bugs have been fixed since the last release.
|
Many bugs have been fixed since the last release.
|
||||||
Some bugs surely remain.
|
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,
|
Because of the United States export restriction on DES implementations,
|
||||||
we are distributing this code separately from the rest of the C
|
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
|
library. There is an extra distribution tar file just for crypt; it is
|
||||||
called `glibc-crypt-2.0.109.tar.gz'. You can just unpack the crypt
|
called `glibc-crypt-2.0.110.tar.gz'. You can just unpack the crypt
|
||||||
distribution along with the rest of the C library and build; you can
|
distribution along with the rest of the C library and build; you can
|
||||||
also build the library without getting crypt. Users outside the USA
|
also build the library without getting crypt. Users outside the USA
|
||||||
can get the crypt distribution via anonymous FTP from ftp.ifi.uio.no
|
can get the crypt distribution via anonymous FTP from ftp.ifi.uio.no
|
||||||
|
|
|
||||||
|
|
@ -62,7 +62,8 @@ texis: texis.awk $(chapters) $(add-chapters) $(appendices) lgpl.texinfo
|
||||||
mv -f $@.T $@
|
mv -f $@.T $@
|
||||||
|
|
||||||
nonexamples = $(filter-out $(add-chapters) %.c.texi, $(texis))
|
nonexamples = $(filter-out $(add-chapters) %.c.texi, $(texis))
|
||||||
examples = $(filter %.c.texi, $(texis))
|
examples = $(filter-out $(foreach d, $(add-ons), ../$d/%.c.texi), \
|
||||||
|
$(filter %.c.texi, $(texis)))
|
||||||
|
|
||||||
# Kludge: implicit rule so Make knows the one command does it all.
|
# Kludge: implicit rule so Make knows the one command does it all.
|
||||||
chapters.% top-menu.%: libc-texinfo.sh $(texis)
|
chapters.% top-menu.%: libc-texinfo.sh $(texis)
|
||||||
|
|
|
||||||
|
|
@ -4,6 +4,5 @@ rtld-parms
|
||||||
regdef.h
|
regdef.h
|
||||||
sgidefs.h
|
sgidefs.h
|
||||||
fpregdef.h
|
fpregdef.h
|
||||||
sys/regdef.h
|
|
||||||
sys/fpregdef.h
|
sys/fpregdef.h
|
||||||
sys/asm.h
|
sys/asm.h
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue