Ulrich Drepper 7799b7b335 Update.
1997-04-15 03:14  Ulrich Drepper  <drepper@cygnus.com>

	* wcsmbs/wcsstr.c: Add weak alias wcswcs for Unix98 compliance.

	* math/Makefile (libm-calls): Add s_sincos and s_cproj.
	* math/mathcalls.h: Add prototype for sincos.
	* sysdeps/i386/fpu/__math.h: Warn about restriction on arguments to
	inlined sin and cos function.
	Define functions new in ISO C 9X when __USE_ISOC9X is defined.
	Add optimized version of finite.
	Rewrite sincos function to handle too large arguments.
	* sysdeps/libm-i387/s_cos.S: Better code alignment.
	* sysdeps/libm-i387/s_cosl.S: Likewise.
	* sysdeps/libm-i387/s_sin.S: Likewise.
	* sysdeps/libm-i387/s_sinl.S: Likewise.
	* sysdeps/libm-i387/s_finite.S: Yet better code.
	* sysdeps/libm-i387/s_finitef.S: Likewise.
	* sysdeps/libm-i387/s_sincos.S: New file.
	* sysdeps/libm-i387/s_sincosf.S: New file.
	* sysdeps/libm-i387/s_sincosl.S: New file.
	* sysdeps/libm-ieee754/s_sincos.c: New file.
	* sysdeps/libm-ieee754/s_sincosf.c: New file.
	* sysdeps/libm-ieee754/s_sincosl.c: New file.

	* sysdeps/libm-ieee754/s_ccosh.c: Change to use sincos function.
	* sysdeps/libm-ieee754/s_ccoshf.c: Likewise.
	* sysdeps/libm-ieee754/s_ccoshl.c: Likewise.
	* sysdeps/libm-ieee754/s_cexp.c: Likewise.
	* sysdeps/libm-ieee754/s_cexpf.c: Likewise.
	* sysdeps/libm-ieee754/s_cexpl.c: Likewise.
	* sysdeps/libm-ieee754/s_csinh.c: Likewise.
	* sysdeps/libm-ieee754/s_csinhf.c: Likewise.
	* sysdeps/libm-ieee754/s_csinhl.c: Likewise.
	* sysdeps/libm-ieee754/s_ctan.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanf.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanl.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanh.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanhf.c: Likewise.
	* sysdeps/libm-ieee754/s_ctanhl.c: Likewise.

	* sysdeps/libm-ieee754/s_cosl.c: Correct check for range.
	* sysdeps/libm-ieee754/s_sinl.c: Likewise.

	* sysdeps/libm-ieee754/s_roundtol.c: Fix typos.
	* sysdeps/libm-ieee754/s_roundtoll.c: Likewise.

	* nis/Makefile (services): Mention nisplus before compat.
	* nis/nis_call.c (__do_niscall): Change type of variable server_len
	to prevent warning.
	* nis/nss_compat/compat-grp.c (getgrent_next_file_plusgroup): Add
	cast to prevent warning.
	* nis/nss_compat/compat-pwd.c (getpwent_next_file_plususer): Likewise.
	* nis/nss_compat/compat-spwd.c (getspent_next_file_plususer): Likewise.
	* nis/nss_nisplus/nisplus-hosts.c (_nss_nisplus_parse_hostent): Change
	type of variable `i' to prevent warning.
	* nis/nss_nisplus/nisplus-network.c (_nss_nisplus_parse_netent):
	Likewise.
	* nis/nss_nisplus/nisplus-proto.c (_nss_nisplus_parse_protoent):
	Likewise.
	* nis/nss_nisplus/nisplus-rpc.c (_nss_nisplus_parse_rpcent): Likewise.
	* nis/nss_nisplus/nisplus-service.c (_nss_nisplus_parse_servent):
	Likewise.

	* sysdeps/generic/Dist: Remove old math implementation files.
	* sysdeps/generic/mathimpl.h: Removed.
	* sysdeps/generic/trig.h: Removed.
	* sysdeps/generic/sincos.c: Removed.
	* sysdeps/generic/asincos.c: Removed.
	* sysdeps/generic/exp__E.c: Removed.
	* sysdeps/generic/log__L.c: Removed.

1997-04-13 17:18  Wolfram Gloger  <wmglo@dent.med.uni-muenchen.de>

	* malloc/malloc.c (fREe): Small optimization.  Before returning,
	add fast check whether the heap containing top can go away.

1997-04-11 16:46  Wolfram Gloger  <wmglo@dent.med.uni-muenchen.de>

	* malloc/malloc.c (mALLOc, rEALLOc, cALLOc, mEMALIGn): When
	failing to allocate a new chunk, also try the main_arena.  It may
	be that we are only running out of mmapped regions, and other
	arenas cannot be enlarged sufficiently.
	(new_heap, malloc_extend_top): Handle top_pad more consistently,
	i.e. only in new_heap().

1997-04-13 21:10  Philip Blundell  <pjb27@cl.cam.ac.uk>

	* sysdeps/posix/Makefile: Don't try to build and run mk-stdiolim
	if cross-compiling.

	* configure.in: Recognise "...linuxaout" OS names and turn off ELF.

	* configure.in: Add ARM support.
	* sysdeps/arm/Implies: New file.
	* sysdeps/arm/__longjmp.S: New file.
	* sysdeps/arm/bsd-_setjmp: New file.
	* sysdeps/arm/bsd-setjmp: New file.
	* sysdeps/arm/bytesex.h: New file.
	* sysdeps/arm/fpu_control.h: New file.
	* sysdeps/arm/jmp_buf.h: New file.
	* sysdeps/arm/setjmp.h: New file.
	* sysdeps/arm/sysdep.h: New file.
	* sysdeps/unix/arm/config.h: New file.

1997-04-14 04:03  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/libm-ieee754/s_cproj.c: New file.
	* sysdeps/libm-ieee754/s_cprojf.c: New file.
	* sysdeps/libm-ieee754/s_cprojl.c: New file.
1997-04-15 01:38:39 +00:00
1997-04-08 23:42:08 +00:00
1995-02-18 01:27:10 +00:00
1997-01-20 02:49:49 +00:00
1997-01-20 02:49:49 +00:00
1997-03-16 20:28:07 +00:00
1997-03-19 05:47:56 +00:00
1997-02-15 04:31:36 +00:00
1997-04-12 23:41:36 +00:00
1997-03-16 20:28:07 +00:00
1997-04-08 23:42:08 +00:00
1997-03-27 01:59:53 +00:00
1997-01-20 02:49:49 +00:00
1997-04-02 14:47:34 +00:00
1997-04-12 23:41:36 +00:00
1997-04-05 01:26:47 +00:00
1997-02-19 04:43:53 +00:00
1997-02-19 04:43:53 +00:00
1997-04-12 23:41:36 +00:00
1997-04-12 23:41:36 +00:00
1997-03-17 03:29:13 +00:00
1997-03-08 05:28:20 +00:00
1997-03-19 05:47:56 +00:00
1997-04-15 01:38:39 +00:00
1997-04-12 23:41:36 +00:00
1997-04-15 01:38:39 +00:00
1997-04-08 23:42:08 +00:00
1997-04-15 01:38:39 +00:00
1997-04-12 23:41:36 +00:00
1997-04-12 23:41:36 +00:00
1997-04-08 23:42:08 +00:00
1995-02-18 01:27:10 +00:00
1997-04-02 14:47:34 +00:00
1997-04-12 23:41:36 +00:00
1997-01-20 02:49:49 +00:00
1997-04-05 01:26:47 +00:00
1996-10-21 01:26:31 +00:00
1997-03-20 02:20:57 +00:00
1997-04-02 14:47:34 +00:00
1997-03-27 01:59:53 +00:00
1997-01-20 02:49:49 +00:00
1997-03-16 20:28:07 +00:00
1997-04-12 23:41:36 +00:00
1997-04-08 23:42:08 +00:00
1997-04-12 23:41:36 +00:00
1997-04-08 23:42:08 +00:00
1997-04-15 01:38:39 +00:00
1997-03-25 01:45:04 +00:00
1997-03-27 01:59:53 +00:00
1997-04-12 23:41:36 +00:00
1997-04-15 01:38:39 +00:00
1997-04-15 01:38:39 +00:00
1995-02-18 01:27:10 +00:00
1996-11-14 02:04:07 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1997-02-19 04:43:53 +00:00
1995-02-18 01:27:10 +00:00
1996-08-12 02:44:03 +00:00
1997-03-23 01:54:07 +00:00
1997-04-15 01:38:39 +00:00
1997-02-02 01:50:11 +00:00
1995-02-18 01:27:10 +00:00
1997-04-12 23:59:36 +00:00
1997-03-04 05:53:28 +00:00
1997-03-16 20:28:07 +00:00
1996-12-31 20:54:33 +00:00
1997-04-15 01:38:39 +00:00
1997-04-15 01:38:39 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1996-08-19 01:07:44 +00:00
1997-02-19 04:43:53 +00:00
1996-09-07 04:10:57 +00:00
FAQ
1997-04-05 01:26:47 +00:00
1995-02-18 01:27:10 +00:00
1997-02-25 05:18:05 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1997-02-25 05:18:05 +00:00
1995-02-18 01:27:10 +00:00
1997-01-23 04:24:20 +00:00
1995-02-18 01:27:10 +00:00
1997-03-16 20:28:07 +00:00
1996-11-20 21:28:45 +00:00
1996-12-21 04:13:58 +00:00
1997-04-12 23:41:36 +00:00
1997-01-21 06:10:42 +00:00
1996-11-06 04:24:40 +00:00
1996-12-02 04:00:15 +00:00
1995-02-18 01:27:10 +00:00
1997-03-19 05:47:56 +00:00
1997-03-25 01:45:04 +00:00
1997-04-12 23:41:36 +00:00
1997-02-02 01:50:11 +00:00
1997-03-19 05:47:56 +00:00
1997-03-19 05:47:56 +00:00
1997-01-26 05:33:35 +00:00
1995-02-18 01:27:10 +00:00
1997-01-28 03:59:29 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1996-10-02 01:40:17 +00:00
1997-03-19 05:47:56 +00:00
1995-02-18 01:27:10 +00:00
1996-11-10 02:21:51 +00:00
1996-08-12 02:44:03 +00:00
1996-10-02 01:40:17 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1996-12-02 04:00:15 +00:00
1995-02-18 01:27:10 +00:00
1997-04-12 23:59:36 +00:00
1995-02-18 01:27:10 +00:00
1997-02-03 03:18:58 +00:00
1996-11-06 04:24:40 +00:00
1997-04-12 23:41:36 +00:00
1997-03-19 05:47:56 +00:00
1996-09-13 03:21:39 +00:00
1995-02-18 01:27:10 +00:00
1997-01-06 22:07:28 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1996-08-12 01:42:37 +00:00
1997-03-19 05:47:56 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1997-01-06 22:07:28 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1995-02-18 01:27:10 +00:00
1997-01-19 04:54:28 +00:00
1997-01-06 22:07:28 +00:00
1997-02-15 04:31:36 +00:00
1995-02-18 01:27:10 +00:00
1997-02-15 04:31:36 +00:00
1996-11-06 04:24:40 +00:00

This directory contains the version 2.0.1 test release of the GNU C Library.
Many bugs have been fixed since the last release.
Some bugs surely remain.

As of this release, the GNU C library is known to run on the following
configurations:

		*-*-gnu			GNU Hurd
		i[3456]86-*-linux-gnu	Linux-2.0 on Intel
		m68k-*-linux-gnu	Linux-2.0 on Motorola 680x0
		alpha-*-linux-gnu	Linux-2.0 on DEC Alpha


Former releases of this library (version 1.09.1 and perhaps earlier
versions) used to run on the following configurations:

		alpha-dec-osf1
		i[3456]86-*-bsd4.3
		i[3456]86-*-isc2.2
		i[3456]86-*-isc3
		i[3456]86-*-sco3.2
		i[3456]86-*-sco3.2v4
		i[3456]86-*-sysv
		i[3456]86-*-sysv4
		i[3456]86-force_cpu386-none
		i[3456]86-sequent-bsd
		i960-nindy960-none
		m68k-hp-bsd4.3
		m68k-mvme135-none
		m68k-mvme136-none
		m68k-sony-newsos3
		m68k-sony-newsos4
		m68k-sun-sunos4
		mips-dec-ultrix4
		mips-sgi-irix4
		sparc-sun-solaris2
		sparc-sun-sunos4

Whether this is still true for this release is unknown.  Porting the
library is not hard.  If you are interested in doing a port, please
get on the mailing list by sending electronic mail to
<bug-glibc-request@prep.ai.mit.edu>.

The GNU C library now includes Michael Glad's Ultra Fast Crypt, which
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.1.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
[129.240.64.21], or another archive site outside the USA.  Archive
maintainers are encouraged to copy this distribution to their archives
outside the USA.  Please get it from ftp.ifi.uio.no; transferring this
distribution from prep.ai.mit.edu (or any other site in the USA) to a
site outside the USA is in violation of US export laws.

Beside the separate crypt tar file there are some more add-ons which can be
used together with GNU libc.  They are designed in a way to ease the
installation by integrating them in the libc source tree.  Simply get the
add-ons you need and use the --enable-add-ons option of the `configure'
script to tell where the add-ons are found.  Please read the FAQ file for
more details.

See the file INSTALL to find out how to configure, build, install, and port
the GNU C library.  You might also consider reading the WWW pages for the
GNU libc at http://www.gnu.org/software/libc/libc.html.

The GNU C Library is completely documented by the Texinfo manual found
in the `manual/' subdirectory.  The manual is still being updated and
contains some known errors and omissions; we regret that we do not have
the resources to work on the manual as much as we would like.  Please
send comments on the manual to <bug-glibc-manual@prep.ai.mit.edu>, and
not to the library bug-reporting address.

The file NOTES contains a description of the feature-test macros used
in the GNU C library, explaining how you can tell the library what
facilities you want it to make available.

We prefer to get bug reports sent using the `glibcbug' shell script which
is install together with the rest of the GNU libc to <bugs@gnu.ai.mit.edu>.
Simply run this shell script and fill in the information.  Nevertheless
you can still send bug reports to <bug-glibc@prep.ai.mit.edu> as normal
electronic mails.

The GNU C Library is free software.  See the file COPYING.LIB for copying
conditions.
Description
No description provided
Readme 191 MiB
Languages
C 75%
Assembly 14.8%
Roff 3.5%
Pawn 3.4%
Makefile 0.8%
Other 2.3%