Go to file
Ulrich Drepper aff4519d38 Update.
2003-01-11  Jim Meyering  <jim@meyering.net>

	* io/ftw.c [HAVE_CONFIG_H]: Include <config.h>.
	[HAVE_SYS_PARAM_H || _LIBC]: Guard inclusion of <sys/param.h>.
	Include <sys/stat.h>, not <include/sys/stat.h>, if !_LIBC.
	[!_LIBC] (__chdir, __closedir, __fchdir, __getcwd, __opendir): Define.
	[!_LIBC] (__readdir64, __tdestroy, __tfind, __tsearch): Define.
	[!_LIBC] (internal_function, dirent64, MAX): Define.
	(__set_errno): Define if not already defined.
	(open_dir_stream): When FTW_CHDIR is enabled, invoke opendir on
	the basename, not the entire file name.
	(process_entry): When FTW_CHDIR is enabled, invoke XSTAT or LXSTAT on
	the basename, not the entire file name.

2003-01-12  Ulrich Drepper  <drepper@redhat.com>

	* string/tester.c (test_strcpy): Disable last added strcpy until
	it is fixed.

2003-01-11  Philip Blundell  <philb@gnu.org>

	* sysdeps/unix/sysv/linux/arm/socket.S: Add cancellation support.

2003-01-11  Andreas Schwab  <schwab@suse.de>

	* Makerules: Add vpath for %.dynsym and %.so so that the
	implicit rule chaining for check-abi works.

2003-01-11  Kaz Kojima  <kkojima@rr.iij4u.or.jp>

	* sysdeps/unix/sysv/linux/sh/sysdep.h (SYSCALL_ERROR_HANDLER):
	Add non-PIC case.

2003-01-11  Jakub Jelinek  <jakub@redhat.com>

	* elf/tls-macros.h [__ia64__] (__TLS_CALL_CLOBBERS): Define.
	[__ia64__] (TLS_LE, TLS_IE): Fix typos.  Add ;; at start of asm if
	gp is used early.
	[__ia64__] (TLS_LD, TLS_GD): Likewise.  Use __TLS_CALL_CLOBBERS.
	* elf/Makefile ($(objpfx)tst-tlsmod5.so, $(objpfx)tst-tlsmod6.so):
	Ensure libc.so in DT_NEEDED.
	* sysdeps/alpha/dl-machine.h (elf_machine_rela): Move
	CHECK_STATIC_TLS before l_tls_offset use.
	* sysdeps/i386/dl-machine.h (elf_machine_rel, elf_machine_rela):
	Likewise.
	* sysdeps/sh/dl-machine.h (elf_machine_rela): Likewise.
	* sysdeps/generic/dl-tls.c (_dl_allocate_tls_storage) [TLS_DTV_AT_TP]:
	Allocate TLS_PRE_TCB_SIZE bytes below result.
	(_dl_deallocate_tls) [TLS_DTV_AT_TP]: Adjust before freeing.
	* sysdeps/generic/libc-tls.c (__libc_setup_tls): If
	TLS_INIT_TP_EXPENSIVE is not defined, allocate even if no PT_TLS
	segment has been found.  If TLS_DTV_AT_TP, allocate TLS_PRE_TCB_SIZE
	bytes below result and add tcb_offset to memsz.
	* sysdeps/ia64/dl-tls.h (__tls_get_addr): New prototype.
	* sysdeps/ia64/dl-machine.h: Include tls.h.
	(elf_machine_type_class): Return ELF_RTYPE_CLASS_PLT for TLS relocs
	too.
	(elf_machine_rela): Assume if sym_map != NULL sym is non-NULL too.
	Handle R_IA64_DTPMOD*, R_IA64_DTPREL* and R_IA64_TPREL* relocations.
	* sysdeps/ia64/libc-tls.c: New file.

2003-01-10  Steven Munroe  <sjmunroe@us.ibm.com>

	* sysdeps/powerpc/powerpc64/sysdep.h (PSEUDO_RET): Add branch hit.
	* sysdeps/unix/sysv/linux/powerpc/bits/stat.h (STAT_VER_LINUX):
	Fix type.  Move definition out of #if.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/ftruncate64.c: New file.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/pread.c: New file.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/pread64.c: New file.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite.c: New file.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/pwrite64.c: New file.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/socket.S: Add cancellation
	support.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/syscalls.list: Remove
	ftruncate64, pread64, pwrite64, truncate64 entries.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/sysdep.h
	(INLINE_SYSCALL): New version that supports function call like
	syscalls.  Add __builtin_expect.
	(LOADARGS_n): Add argument size safety checks.
	(INTERNAL_SYSCALL): New Macro.
	* sysdeps/unix/sysv/linux/powerpc/powerpc64/truncate64.c: New file.
	* sysdeps/unix/sysv/linux/powerpc/sys/procfs.h [__PPC_ELF_H]: Avoid
	redefinition of elf_fpreg_t and elf_fpregset_t.

2003-01-12  Ulrich Drepper  <drepper@redhat.com>

	* elf/dl-close.c (_dl_close): Add several asserts.  Correct and
	simplify test for unloading.  If loader of a DSO is unloaded do not
	use its scope anymore.  Fall back to own scope and adjust opencounts.
	Fix several comments.
	* elf/dl-deps.c (_dl_map_object_deps): Always allocate memory for
	the l_searchlist, not only for l_initfini.

	* elf/dl-lookup.c (add_dependencies): Avoid creating relocation
	dependencies if objects cannot be removed.  Remove object with the
	definition as not unloadable if necessary.

	* elf/reldep6.c: Create relocation dependency before closing the first
	module.

2003-01-10  Guido Günther  <agx@sigxcpu.org>
	* elf/Makefile: Add rules to build and run reldep9 test.
	* elf/reldep9.c: New file.
	* elf/reldep9mod1.c: New file.
	* elf/reldep9mod2.c: New file.
	* elf/reldep9mod3.c: New file.

2003-01-09  Jakub Jelinek  <jakub@redhat.com>

	* elf/Makefile: Add rules to build and run nodelete2 test.
	* elf/nodelete2.c: New file.
	* elf/nodel2mod1.c: New file.
	* elf/nodel2mod2.c: New file.
	* elf/nodel2mod3.c: New file.

2003-01-09  Jakub Jelinek  <jakub@redhat.com>
2003-01-12 10:11:16 +00:00
aout Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
argp Update. 2003-01-08 06:49:39 +00:00
assert * sysdeps/mach/_strerror.c (__strerror_r): Add libc_hidden_def. 2002-08-30 01:31:18 +00:00
bare Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
bits Update. 2002-12-08 03:13:06 +00:00
catgets Update. 2003-01-02 20:32:33 +00:00
conf (NEED_INETADDR, NEED_INETATON): Define to 1, not empty. 1995-09-08 20:24:57 +00:00
conform Add strerror_r prototype. 2002-04-23 21:16:22 +00:00
crypt * crypt/md5-crypt.c: Doc fix. 2002-11-11 02:43:35 +00:00
csu Update. 2003-01-02 20:32:33 +00:00
ctype 2002-09-23 Roland McGrath <roland@redhat.com> 2002-09-24 04:20:50 +00:00
debug Update. 2003-01-02 20:32:33 +00:00
dirent Update. 2002-12-14 19:49:13 +00:00
dlfcn Update. 2003-01-05 10:21:08 +00:00
elf Update. 2003-01-12 10:11:16 +00:00
gmon Update. 2003-01-08 06:49:39 +00:00
gnulib Update to LGPL v2.1. 2001-07-06 04:58:11 +00:00
grp * include/libc-symbols.h (__libc_freeres_fn_section, libc_freeres_fn): 2002-11-01 20:44:15 +00:00
hesiod Update. 2002-08-26 07:06:57 +00:00
hurd Update. 2002-12-31 20:46:11 +00:00
iconv Update. 2003-01-02 20:32:33 +00:00
iconvdata 2002-12-19 Roland McGrath <roland@redhat.com> 2002-12-19 22:25:19 +00:00
include [HAVE_WEAK_SYMBOLS] (_weak_extern): Define using _Pragma(weak ...). 2003-01-03 23:43:53 +00:00
inet Update. 2002-12-28 10:24:40 +00:00
intl Update. 2003-01-08 06:49:39 +00:00
io Update. 2003-01-12 10:11:16 +00:00
libio Update. 2003-01-08 06:49:39 +00:00
linuxthreads Update. 2003-01-12 10:11:16 +00:00
linuxthreads_db Update. 2003-01-05 10:55:15 +00:00
locale Update. 2003-01-02 20:32:33 +00:00
localedata Update. 2003-01-03 22:32:41 +00:00
login Update. 2003-01-02 20:32:33 +00:00
mach 2002-12-30 Roland McGrath <roland@redhat.com> 2002-12-31 02:04:37 +00:00
malloc Update. 2003-01-07 02:45:24 +00:00
manual * manual/libc-texinfo.sh: Emit @set ADD-ON for each ADD-ON that 2002-12-10 11:08:11 +00:00
math Update. 2003-01-07 18:54:08 +00:00
misc Update. 2002-12-28 22:19:04 +00:00
nis Update. 2002-08-26 07:06:57 +00:00
nptl Update. 2003-01-09 04:19:03 +00:00
nptl_db Update. 2003-01-08 00:22:00 +00:00
nscd Update. 2003-01-02 20:32:33 +00:00
nss Update. 2003-01-02 20:32:33 +00:00
po Belarusian translation for GNU libc messages. 2002-12-05 06:12:07 +00:00
posix (noop): Add __attribute_noinline__. 2003-01-09 19:45:08 +00:00
pwd * include/libc-symbols.h (__libc_freeres_fn_section, libc_freeres_fn): 2002-11-01 20:44:15 +00:00
resolv Update. 2003-01-03 22:32:41 +00:00
resource Update. 2002-07-20 04:01:22 +00:00
rpm Update. 1998-05-18 11:43:16 +00:00
rt Update. 2003-01-05 10:21:08 +00:00
scripts 2002-12-27 Roland McGrath <roland@redhat.com> 2002-12-27 23:05:53 +00:00
setjmp Prepare headers for use in ISO C++ compliant implementations. 2002-08-28 08:01:11 +00:00
shadow * include/libc-symbols.h (__libc_freeres_fn_section, libc_freeres_fn): 2002-11-01 20:44:15 +00:00
signal * libio/ftello.c (ftello): Use _IO_off64_t for type of POS. 2002-10-23 23:50:19 +00:00
socket Update. 2002-02-01 23:24:05 +00:00
soft-fp * sysdeps/i386/soft-fp/sfp-machine.h (_FP_NANFRAC_Q, _FP_NANSIGN_Q): 2002-11-01 21:49:33 +00:00
stdio-common Update. 2002-12-19 09:18:01 +00:00
stdlib Update. 2002-12-17 06:52:45 +00:00
streams 2002-10-23 Roland McGrath <roland@redhat.com> 2002-10-23 23:48:42 +00:00
string Update. 2003-01-12 10:11:16 +00:00
sunrpc 2002-12-16 Roland McGrath <roland@redhat.com> 2002-12-16 10:25:28 +00:00
sysdeps Update. 2003-01-12 10:11:16 +00:00
sysvipc Update. 2002-12-18 23:27:15 +00:00
termios Update. 2002-02-01 23:24:05 +00:00
time Update. 2003-01-08 02:31:28 +00:00
timezone Update from tzdata2002d. 2002-10-15 18:25:07 +00:00
wcsmbs Update. 2002-12-02 22:39:58 +00:00
wctype Update. 2002-12-07 04:21:51 +00:00
.cvsignore Also ignore names such as autom4te-2.53.cache. 2002-12-06 11:07:54 +00:00
abi-tags * sysdeps/generic/utmp-equal.h: New file, extracted from utmp_file.c. 2002-09-20 22:07:20 +00:00
aclocal.m4 * scripts/abilist.awk: New file. 2002-11-14 03:59:56 +00:00
BUGS Update. 2002-09-30 20:56:47 +00:00
ChangeLog Update. 2003-01-12 10:11:16 +00:00
ChangeLog.1 * Makefile (distribute): Add ChangeLog.[0-9]. 1995-04-14 03:52:54 +00:00
ChangeLog.2 * Makefile (distribute): Add ChangeLog.[0-9]. 1995-04-14 03:52:54 +00:00
ChangeLog.3 * Makefile (distribute): Add ChangeLog.[0-9]. 1995-04-14 03:52:54 +00:00
ChangeLog.4 * Makefile (distribute): Add ChangeLog.[0-9]. 1995-04-14 03:52:54 +00:00
ChangeLog.5 Thu Jul 18 12:33:57 1996 Roland McGrath <roland@baalperazim.frob.com> 1996-07-20 12:06:21 +00:00
ChangeLog.6 Update. 1997-07-22 00:10:33 +00:00
ChangeLog.7 Update. 1997-11-18 02:50:07 +00:00
ChangeLog.8 Update. Old logs are in ChangeLog.7. 1998-08-11 18:44:11 +00:00
ChangeLog.9 Update. 2000-04-28 06:14:43 +00:00
ChangeLog.10 Update. 2000-02-29 01:13:44 +00:00
ChangeLog.11 Update. 2000-11-10 04:15:55 +00:00
ChangeLog.12 Update. 2001-08-16 05:39:18 +00:00
ChangeLog.13 Update. 2002-10-03 16:37:04 +00:00
config-name.in initial import 1995-02-18 01:27:10 +00:00
config.h.in * configure.in (ASM_ALPHA_NG_SYMBOL_PREFIX): Remove test. 2002-11-08 02:20:41 +00:00
config.make.in * scripts/abilist.awk: New file. 2002-11-14 03:59:56 +00:00
configure 2002-11-24 Roland McGrath <roland@redhat.com> 2002-11-24 23:11:14 +00:00
configure.in 2002-11-24 Roland McGrath <roland@redhat.com> 2002-11-24 23:11:14 +00:00
CONFORMANCE Update. 2001-01-11 17:50:24 +00:00
COPYING Update. 2001-07-06 06:58:28 +00:00
COPYING.LIB 2002-08-26 Brian Youmans <3diff@gnu.org> 2002-08-26 22:40:48 +00:00
cppflags-iterator.mk * cppflags-iterator.mk (CPPFLAGS-$(cpp-src)): Variable removed. 2002-10-16 22:09:55 +00:00
extra-lib.mk * cppflags-iterator.mk (CPPFLAGS-$(cpp-src)): Variable removed. 2002-10-16 22:09:55 +00:00
FAQ Update. 2002-10-03 01:03:45 +00:00
FAQ.in Update. 2002-12-10 04:05:39 +00:00
glibcbug.in Update. 2002-07-16 18:15:34 +00:00
INSTALL Update. 2002-12-10 04:05:39 +00:00
INTERFACE Update. 1999-10-31 17:37:43 +00:00
LICENSES 2002-08-20 Brian Youmans <3diff@gnu.org> 2002-08-20 21:51:55 +00:00
Make-dist Update. 2002-10-10 00:42:24 +00:00
Makeconfig 2003-01-04 Roland McGrath <roland@redhat.com> 2003-01-06 00:41:51 +00:00
Makefile 2002-12-27 Roland McGrath <roland@redhat.com> 2002-12-27 23:05:53 +00:00
Makefile.in Update. 2000-11-15 23:56:34 +00:00
Makerules Update. 2003-01-12 10:11:16 +00:00
MakeTAGS Update. 2002-10-13 08:42:30 +00:00
NAMESPACE Add and update many more entries. 2000-03-20 00:42:58 +00:00
NEWS Add some items, tweak another. 2002-12-03 00:54:55 +00:00
NOTES Regenerated. 2000-03-10 09:36:06 +00:00
o-iterator.mk Fri Mar 17 12:58:37 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-03-17 18:42:51 +00:00
PROJECTS Update. 2002-09-04 23:40:45 +00:00
README Update. 2002-10-10 00:42:24 +00:00
README-alpha Update. 1999-05-13 10:22:54 +00:00
README.libm update from main archive 961105 1996-11-06 04:24:40 +00:00
README.template Update. 2002-10-03 00:24:35 +00:00
Rules 2002-12-30 Roland McGrath <roland@redhat.com> 2002-12-31 02:04:37 +00:00
shlib-versions Update. 2002-09-05 10:28:51 +00:00
test-skeleton.c Update. 2002-12-19 17:11:28 +00:00
tls.make.c * sysdeps/generic/errno.c (__libc_errno): Remove alias. 2002-11-15 03:37:24 +00:00
version.h Update. 2002-10-09 23:39:33 +00:00
Versions.def No new symbols in 2.3.1, but some new ones in 2.3.2. 2002-12-10 19:43:21 +00:00

This directory contains the version 2.3.1 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.x on Intel
		m68k-*-linux-gnu	Linux-2.x on Motorola 680x0
		alpha*-*-linux-gnu	Linux-2.x on DEC Alpha
		powerpc-*-linux-gnu     Linux and MkLinux on PowerPC systems
		powerpc64-*-linux-gnu	Linux-2.4.19+ on 64-bit PowerPC systems
		sparc-*-linux-gnu	Linux-2.x on SPARC
		sparc64-*-linux-gnu	Linux-2.x on UltraSPARC 64-bit
		arm-*-none		ARM standalone systems
		arm-*-linux		Linux-2.x on ARM
		arm-*-linuxaout		Linux-2.x on ARM using a.out binaries
		mips*-*-linux-gnu	Linux-2.x on MIPS
		ia64-*-linux-gnu	Linux-2.x on ia64
		s390-*-linux-gnu	Linux-2.x on IBM S/390
		s390x-*-linux-gnu	Linux-2.4+ on IBM S/390 64-bit
		sh-*-linux-gnu		Linux-2.x on Super Hitachi
		cris-*-linux-gnu	Linux-2.4+ on CRIS
		x86-64-*-linux-gnu	Linux-2.4+ on x86-64

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

Since no one has volunteered to test and fix the above configurations,
these are not supported at the moment.  It's expected that these don't
work anymore.  Porting the library is not hard.  If you are interested
in doing a port, please contact the glibc maintainers by sending
electronic mail to <bug-glibc@gnu.org>.

There are some 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@gnu.org>, 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 installed together with the rest of the GNU libc to <bugs@gnu.org>.
Simply run this shell script and fill in the information.  Nevertheless
you can still send bug reports to <bug-glibc@gnu.org> as normal electronic
mails.

The GNU C Library is free software.  See the file COPYING.LIB for copying
conditions, and LICENSES for notices about a few contributions that require
these additional notices to be distributed.