Go to file
Ulrich Drepper 08a3c37600 Update.
Tue Aug  6 01:13:56 1996  Ulrich Drepper  <drepper@cygnus.com>

	Clean name space according to ISO C, ISO C/Amd 1, and POSIX.1.
	This requires to rename several functions to use __ protected
	names.
	* dirent/dirent.h: Add prototypes of __opendir, __closedir,
	and __readdir.
	* sysdeps/mach/hurd/closedir.c: Prepend function name with __
	and make old name a weak alias.
	* sysdeps/mach/hurd/getrlimit.c: Likewise.
	* sysdeps/mach/hurd/opendir.c: Likewise.
	* sysdeps/mach/hurd/readdir.c: Likewise.
	* sysdeps/stub/closedir.c: Likewise.
	* sysdeps/stub/opendir.c: Likewise.
	* sysdeps/stub/readdir.c: Likewise.
	* sysdeps/unix/closedir.c: Likewise.
	* sysdeps/unix/opendir.c: Likewise.
	* sysdeps/unix/readdir.c: Likewise.

	* sysdeps/unix/opendir.c: Call `__fcntl' instead `fcntl'.

	* sysdeps/posix/getcwd.c: Call `__opendir', `__readdir',
	`__closedir' instead of unprotected names.

	* libio/filedoalloc.c (_IO_file_doallocate): Call `__isatty'
	instead of `isatty' since later is not part of ISO C.
	* libio/fileops.c (_IO_file_fopen): Call `__open' instead of
	`open' since later is not part of ISO C.

	* login/endutent.c (endutent): Call `__endutent_r', not
	`endutent_r'.
	* login/endutent_r.c: Rename defined function to `__endutent_r',
	make `endutent_r' weak alias.
	* login/getutent.c (getutent): Call `__getutent_r', not
	`getutent_r'.
	* login/getutid.c (getutid): Call `__getutid_r', not `getutid_r'.
	* login/getutid_r.c: Rename defined function to `__getutent_r',
	make `getutent_r' weak alias.
	* login/getutline.c (getutline): Call `__getutline_r', not
 	`getutline_r'.
	* login/getutline_r.c: Rename defined function to `__getutline_r',
	make `getutline_r' weak alias.
	* login/pututline_r.c: Rename defined function to `__pututline_r',
	make `pututline_r' weak alias.
	* login/setutent.c (setutent): Call `__setutline_r', not
 	`setutline_r'.
	* login/setutent_r.c: Rename defined function to `__setutline_r',
	make `setutline_r' weak alias.
	Rename `utmpname' to `__utmpname' and make former weak alias.
	(__utmpname): Call `__strdup', not `strdup'.
	* login/utmp.h: Add prototypes for name space clean reentrant
	versions.
	* sysdeps/unix/getlogin.c: Call `__ttyname_r', `__setutent_r',
	and `__endutent_r' instead of unprotected names.

	* math/math.h: Add prototype for `__matherr'.
	* sysdeps/libm-ieee754/k_standard.c: Call `__matherr' instead
	of `matherr'.

	* nss/getXXbyYY.c: Call __ protected reentrant function.
	* nss/getXXent.c: Likewise.
	* nss/getXXbyYY_r.c: Define `get*' function with __ protected
	name.  Make usual name a weak alias.
	* nss/getXXent_r.c: Likewise.

	* posix/unistd.h: Add prototype for `__ttyname_r'.
	* sysdeps/posix/ttyname_r.c: Rename function to `__ttyname_r'
	and make `ttyname_r' a weak alias.

	* resource/sys/resource.h: Add prototype for `__getrlimit'.
	* sysdeps/stub/getrlimit.c: Prepend function name with __
	and make old name a weak alias.
	* sysdeps/unix/syscalls.list: Rename system call to `__getrlimit'
	and make `getrlimit' weak alias.

	* libc/stdio/stdio.h: Add prototype for `__vscanf'.
	* libc/stdio/vscanf.c: De-ANSI-fy.
	Rename function to `__vscanf' and make `vscanf' a weak alias.
	* stdio-common/scanf.c (scanf): Use _IO_vscanf/__vscanf instead
 	of `vscanf'.

	* stdio-common/reg-printf.c: De-ANSI-fy.
	Rename function to `__register_printf_function' and make
	`register_printf_function' weak alias.

	* stdio-common/vfprintf.c: Call `__wcsrtombs' instead of
	`wcsrtombs'.

	* stdlib/mbstowcs.c: Call `__mbsrtowcs' instead of `mbsrtowcs'.
	* stdlib/mbtowc.c: Call `__mbrtowc' instead of `mbrtowc'.
	* stdlib/wcstombs.c: Call `__wcsrtombs' instead of `wcsrtombs'.
	* stdlib/wctomb.c: Call `__wcrtomb' instead of `wcrtomb'.
	* wcsmbs/mbrtowc.c: Prepend function name with __ and make old
 	name a weak alias.
	* wcsmbs/mbsrtowcs.c: Likewise.
	* wcsmbs/wcrtomb.c: Likewise.
	* wcsmbs/wcsrtombs.c: Likewise.
	* wcsmbs/wchar.h: Add prototypes for __ protected versions.

	* sysdeps/posix/sigsetmask.c (__sigsetmask): Call `__sigprocmask'
	instead of `sigprocmask'.


	* grp/grp.h [__USE_REENTRANT]: Add prototypes for reentrant
	version getgrent_r, getgrgid_r, and getgrnam_r.
	* pwd/pwd.h [__USE_REENTRANT]: Add prototypes for reentrant
	version getpwent_r, getpwuid_r, getpwnam_r and __ protected
	names.
	* resolv/netdb.h: Complete rewrite.  No more BSD ugliness.


	* misc/error.c (private_strerror): Translate messages from table,
	too.

	* io/fcntl.h: Pretty printing.
	* misc/fstab.h: Likewise.
	* misc/ttyent.h: Likewise.
	* resource/sys/resource.h: Likewise.
	* string/argz.h: Likewise.
	* string/envz.h: Likewise.

	Add support for symbols from POSIX.1c (POSIX threads).
	* posix/getconf.c: Handle new sysconf symbols.
	* posix/posix1_lim.h: Define _POSIX_TTY_NAME_MAX and
	_POSIX_LOGIN_NAME_MAX with minimal maximal values.
	* sysdeps/generic/confname.h: Define new symbols.
	* sysdeps/posix/sysconf.c: Handle new symbols.
	* sysdeps/stub/sysconf.c: Ditto.
	* sysdeps/unix/sysv/linux/sysconf.c: Removed.  Generic version
	is ok now.

	* sunrpc/rpc/xdr.h: Move definition of type `xdrproc_t' to
	have real prototype.

	* sysdeps/generic/resourcebits.h: Add macro definition for
	RLIMIT_* values.  Some sources test using #ifdef whether specific
	limit is available.
	* sysdeps/unix/bsd/sun/sunos4/resourcebits.h: Ditto.
	* sysdeps/unix/sysv/linux/resourcebits.h: Removed.  We need
	separate files for the architectures.
	* sysdeps/unix/sysv/linux/alpha/resourcebits.h: New file.
	* sysdeps/unix/sysv/linux/i386/resourcebits.h: New file.
	* sysdeps/unix/sysv/linux/m68k/resourcebits.h: New file.
	* sysdeps/unix/sysv/linux/mips/resourcebits.h: New file.

	* sysdeps/posix/getdtsz.c: Rewrite to use `__getrlimit' function
	and only default on `OPEN_MAX'.
	* sysdeps/unix/sysv/sysv4/getdtsz.c: Removed.  Default is already
	the POSIX version.

	* time/Makefile (routines): Add ctime_r.
	* time/asctime.c: Add implementation of `asctime_r'.  Make
	`asctime' implementation based on reentrant version.
	* time/ctime_r.c: New file.
	* time/time.h [__USE_REENTRANT]: Add definition of `asctime_r'
	and `ctime_r'.

Sat Aug  3 18:41:36 1996  Andreas Schwab  <schwab@issan.informatik.uni-dortmund.de>

	* locale/C-ctype.c (_nl_C_LC_CTYPE_toupper): Fix EOF entry.
	(_nl_C_LC_CTYPE): Fix ordering.
	* locale/categories.def (LC_CTYPE): Add missing ctype-class32; fix
 	typo.

Sat Aug  3 12:31:06 1996  Richard Henderson  <rth@tamu.edu>

	* csu/initfini.c: Discover the maximum alignment generated by the
	compiler when emitting a function.
	(_init): Make sure the end of the crti fragment is aligned.
	(_fini): Likewise.

Fri Aug  2 03:12:40 1996  Ulrich Drepper  <drepper@cygnus.com>

	* initfini.c: (__libc_is_static): New variable.  Will be
 	initialized in init-first.c.  Some actions in the libc work
 	different when libc is static or dynamic.

	* sysdeps/unix/sysv/linux/init-first.c (init): Use
 	`__libc_is_static' variable to determine whether call to
 	`personality' and `setfpucw' is necessary.  When done set variable
 	to +-1 depending on library type.

	* locale/setlocale.c (setlocale): Use global variable
 	`__libc_enable_secure' instead of calling `get{,e}{g,u}id()' to
 	determine whether it's a SET[UG]ID program.

Fri Aug  2 14:40:22 1996  Roland McGrath  <roland@fast.cs.utah.edu>

	* Version 1.93 test release.

	* manual/Makefile: Use -include for chapters-incl too.

	* Makeconfig (+link): Add back start.o, mistakenly removed in last
	change.

Fri Aug  2 01:04:02 1996  Roland McGrath  <roland@delasyd.gnu.ai.mit.edu>

	* nss/Makefile (generated): Add db-*.c.

	* sysdeps/i386/sysdep.h: Get generic/sysdep.h explicitly instead of
	using #include_next.

	* configure.in (--enable-add-ons): Quote m4 macro args.

	* elf/rtld.c (dl_main): For --verify, fail if no dynamic section.

Thu Aug  1 14:40:03 1996  Roland McGrath  <roland@fast.cs.utah.edu>

	* sunrpc/Makefile [$(cross-compile)=no]: Test before making librpcsvc.

	* Makerules (build-shlib): Add -B$(csu-objpfx) to find crt[in].o there.

	* Makeconfig (+preinit, +postinit): Prepend $(csu-objpfx) here.
	(+link): Not here.

	* stdio-common/_itoa.h (_itoa_word): Declare unused to suppress
	warning when inline function is elided.
	* sysdeps/i386/dl-machine.h (elf_machine_matches_host): Likewise.
	(elf_machine_runtime_setup): Likewise.
	* elf/dynamic-link.h (elf_get_dynamic_info): Likewise.
	* sysdeps/i386/dl-machine.h (elf_machine_got): Likewise.
	(elf_machine_load_address): Likewise.

	* catgets/gencat.c: Include <locale.h>.

	* sysdeps/unix/mk-local_lim.c (param): Add SYMLOOP_MAX/MAXSYMLINKS.

	* login/logwtmp.c (logwtmp): Call time, not __time.

	* sysdeps/gnu/utmpbits.h (_HAVE_UT_PID): New macro.
	* login/login.c (login): Test [_HAVE_UT_PID] to use ut_pid member.
	* login/logwtmp.c (logwtmp): Likewise.

	* sysdeps/generic/ioctl-types.h (sizeof): Define to 0 around #if
	comparing ioctl macro values.

	* sysdeps/i386/sysdep.h: Do `#include_next <sysdep.h>'.

	* manual/Makefile: Use -include for chapters to suppress warning.

	* sysdeps/stub/socket.c: Fix type of TYPE arg.
	* sysdeps/stub/socketpair.c: Likewise.

	* sysdeps/stub/_exit.c (_exit): Remove obsolete __NORETURN keyword.

	* sysdeps/generic/sysdep.h: New file, broken out of ...
	* sysdeps/unix/sysdep.h: ... here.
	(C_LABEL): Moved out.

	* Makeconfig (soversions.mk): Don't use newfangled ${x%%y} syntax;
	stick to sed.  Do `exit 0' at end because while returns nonzero.

	* sysdeps/i386/sysdep.h: New file, broken out of ...
	* sysdeps/unix/i386/sysdep.h: ... here.  Generic asm macros moved out.

	* sysdeps/stub/stdio_lim.h (L_ctermid, L_cuserid): Macros removed.
	They are defined unconditionally in libio/stdio.h.

	* elf/dl-runtime.c: Include <stddef.h> for `NULL' defn.
	* elf/dl-cache.c: Likewise.

Mon Jul 29 19:20:05 1996  Ulrich Drepper  <drepper@cygnus.com>

	* sysdeps/unix/sysv/linux/Makefile [$(subdir == misc]
	(sysdep_headers): Add sys/sysmacros.h.
	* sysdeps/unix/sysv/linux/sys/sysmacros.h: New file.

 	tcgetattr.  We have weak aliases now.  * stdlib/stdlib.h
 	[__OPTIMIZE__ && __GNUC__ >= 2]: Remove "optimizations" for random
 	functions.
1996-08-06 00:25:29 +00:00
arpa initial import 1995-02-18 01:27:10 +00:00
assert Tue May 14 14:07:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-14 20:30:25 +00:00
bare Tue May 14 14:07:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-14 20:30:25 +00:00
catgets Remade for alpha-1.93 1996-08-02 05:27:50 +00:00
conf (NEED_INETADDR, NEED_INETATON): Define to 1, not empty. 1995-09-08 20:24:57 +00:00
csu Updated from ../gpl2lgpl.sed 1996-07-17 18:00:33 +00:00
ctype Fri Jul 26 00:36:50 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-27 00:32:20 +00:00
db Sat Jul 27 13:02:09 1996 Ulrich Drepper <drepper@cygnus.com> 1996-07-29 00:18:42 +00:00
dirent Thu Jun 13 17:25:11 1996 David Mosberger-Tang <davidm@azstarnet.com> 1996-06-19 06:54:12 +00:00
elf Remade for alpha-1.93 1996-08-02 05:27:50 +00:00
gmon Fri Jun 7 09:11:17 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-06-07 20:37:41 +00:00
gnulib Tue May 14 14:07:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-14 20:30:25 +00:00
grp Sun Jul 14 01:51:39 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-14 06:04:09 +00:00
hurd Fri Jul 19 13:18:02 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-19 17:18:51 +00:00
inet * inet/getnetent_r.c: Define NEED_H_ERRNO. 1996-07-12 02:01:17 +00:00
intl Fri Jul 26 04:41:28 1996 Ulrich Drepper <drepper@cygnus.com> 1996-07-26 04:35:31 +00:00
io * io/Makefile (headers): Add sys/vfs.h. 1996-07-07 23:23:51 +00:00
libio Sat Jun 22 21:29:52 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-06-23 01:31:00 +00:00
locale Tue Jul 30 15:14:50 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-30 19:15:53 +00:00
login Remade for alpha-1.93 1996-08-02 05:27:50 +00:00
mach Thu Jun 13 17:25:11 1996 David Mosberger-Tang <davidm@azstarnet.com> 1996-06-19 06:54:12 +00:00
manual (\heading, \subheading, \subsubheading): Can no 1996-08-05 18:01:12 +00:00
math * math/Makefile (calls): Add s_frexp, s_ldexp. 1996-07-12 00:43:28 +00:00
misc Fri Jul 26 04:41:28 1996 Ulrich Drepper <drepper@cygnus.com> 1996-07-26 04:35:31 +00:00
netinet Fri Jun 28 02:41:08 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-06-28 08:56:59 +00:00
nss Fri Aug 2 01:04:02 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-08-02 16:10:33 +00:00
po Add *.mo 1996-07-01 23:03:12 +00:00
posix Sat Jul 27 13:02:09 1996 Ulrich Drepper <drepper@cygnus.com> 1996-07-29 00:18:42 +00:00
protocols initial import 1995-02-18 01:27:10 +00:00
pwd Tue Jul 2 10:44:37 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-02 17:43:35 +00:00
resolv Thu Jul 18 04:33:21 1996 Roland McGrath <roland@baalperazim.frob.com> 1996-07-18 08:43:26 +00:00
resource Sun May 26 15:15:08 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-26 19:19:51 +00:00
rpc initial import 1995-02-18 01:27:10 +00:00
rpm * rpm/template (%build): Use @prefix@ instead of always /usr. 1996-07-02 21:57:31 +00:00
setjmp Tue May 14 14:07:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-14 20:30:25 +00:00
signal Tue Jun 4 00:16:03 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-06-04 01:41:11 +00:00
socket Sun Jul 14 01:51:39 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-14 06:04:09 +00:00
stdio Merge linewrap changes 1996-07-17 18:46:54 +00:00
stdio-common Remade for alpha-1.93 1996-08-02 05:27:50 +00:00
stdlib Wed Jul 31 14:21:36 1996 Ulrich Drepper <drepper@cygnus.com> 1996-08-01 00:08:31 +00:00
string Sun Jul 28 23:46:14 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-29 03:49:00 +00:00
sunrpc Remade for alpha-1.93 1996-08-02 05:27:50 +00:00
sys Sun Jul 14 01:51:39 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-14 06:04:09 +00:00
sysdeps Remade for alpha-1.93 1996-08-02 05:27:50 +00:00
sysvipc Tue May 14 14:07:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-14 20:30:25 +00:00
termios Wed Jul 31 14:21:36 1996 Ulrich Drepper <drepper@cygnus.com> 1996-08-01 00:08:31 +00:00
time Mon Jul 29 20:28:27 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> 1996-07-31 09:39:37 +00:00
wcsmbs Sun Jul 28 23:46:14 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-29 03:49:00 +00:00
wctype * time/Makefile (tzcompile): Add missing backslash. 1996-05-26 22:09:13 +00:00
.cvsignore Tue May 14 14:07:10 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-14 20:30:25 +00:00
=__ify initial import 1995-02-18 01:27:10 +00:00
a.out.h initial import 1995-02-18 01:27:10 +00:00
aclocal.m4 Thu May 9 09:17:46 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-10 22:06:47 +00:00
alloca.h initial import 1995-02-18 01:27:10 +00:00
ansidecl.h initial import 1995-02-18 01:27:10 +00:00
argz.h Mon Apr 29 00:11:59 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-04-29 05:21:53 +00:00
assert.h initial import 1995-02-18 01:27:10 +00:00
ChangeLog Update. 1996-08-06 00:25:29 +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
config-name.in initial import 1995-02-18 01:27:10 +00:00
config.guess Fix previous change. Use sed's y command instead. 1996-07-16 04:47:46 +00:00
config.h.in Tue Apr 23 15:56:56 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-04-24 00:58:47 +00:00
config.make.in Mon Jul 29 01:27:07 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-29 05:54:17 +00:00
config.sub Recognize rtems as an o/s. 1996-07-07 17:26:50 +00:00
configure Corrected handling of add-ons. 1996-08-05 20:16:29 +00:00
configure.in Remade for alpha-1.93 1996-08-02 05:27:50 +00:00
crypt-README initial import 1995-02-18 01:27:10 +00:00
ctype.h initial import 1995-02-18 01:27:10 +00:00
db.h Fri Jul 19 15:45:20 1996 Ulrich Drepper <drepper@cygnus.com> 1996-07-20 11:53:52 +00:00
dirent.h initial import 1995-02-18 01:27:10 +00:00
dlfcn.h Fri Jul 19 15:45:20 1996 Ulrich Drepper <drepper@cygnus.com> 1996-07-20 11:53:52 +00:00
elf.h (os=gnu*): Always set elf=yes, not just for os=gnu*elf*. 1995-05-13 06:16:24 +00:00
endian.h initial import 1995-02-18 01:27:10 +00:00
envz.h Mon Apr 29 00:11:59 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-04-29 05:21:53 +00:00
errno.h Thu Jun 13 17:25:11 1996 David Mosberger-Tang <davidm@azstarnet.com> 1996-06-19 06:54:12 +00:00
error.h Sun Dec 10 09:56:06 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-12-11 10:00:21 +00:00
extra-lib.mk Fri Jul 5 12:22:51 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-05 23:47:08 +00:00
FAQ Tue Jul 16 00:31:31 1996 Richard Henderson <rth@tamu.edu> 1996-07-16 06:38:54 +00:00
fcntl.h initial import 1995-02-18 01:27:10 +00:00
features.h Thu Jun 13 17:25:11 1996 David Mosberger-Tang <davidm@azstarnet.com> 1996-06-19 06:54:12 +00:00
fnmatch.h initial import 1995-02-18 01:27:10 +00:00
ftw.h initial import 1995-02-18 01:27:10 +00:00
getopt.h initial import 1995-02-18 01:27:10 +00:00
glob.h initial import 1995-02-18 01:27:10 +00:00
gnu-stabs.h initial import 1995-02-18 01:27:10 +00:00
gnu-versions.h (_GNU_GLOB_INTERFACE_VERSION): New macro. 1995-12-06 14:10:23 +00:00
grp.h initial import 1995-02-18 01:27:10 +00:00
INSTALL initial import 1995-02-18 01:27:10 +00:00
install-sh Add MIT copyright notice. From gordoni@cygnus.com. 1996-07-11 21:02:19 +00:00
langinfo.h Sun Mar 5 19:40:13 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-03-06 03:00:08 +00:00
libc-symbols.h Mon Jul 8 02:14:25 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-08 06:18:25 +00:00
libintl.h Fri Nov 10 14:15:21 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-11-10 20:38:31 +00:00
limits.h Tue May 28 04:38:10 1996 Ulrich Drepper <drepper@cygnus.com> 1996-05-29 04:48:04 +00:00
locale.h initial import 1995-02-18 01:27:10 +00:00
Make-dist * Make-dist (dist): Don't depend on crypt tar file. Remove that rule. 1996-06-25 13:49:53 +00:00
Makeconfig Fri Aug 2 14:40:22 1996 Roland McGrath <roland@fast.cs.utah.edu> 1996-08-02 20:56:23 +00:00
Makefile Mon Jul 29 01:27:07 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-29 05:54:17 +00:00
Makefile.in initial import 1995-02-18 01:27:10 +00:00
Makerules Remade for alpha-1.93 1996-08-02 05:27:50 +00:00
MakeTAGS * MakeTAGS (extract): Pass --add-comments=TRANS. 1996-07-14 17:48:00 +00:00
malloc.h initial import 1995-02-18 01:27:10 +00:00
math.h initial import 1995-02-18 01:27:10 +00:00
mathcalls.h Mon Mar 4 20:54:40 1996 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> 1996-03-05 21:41:30 +00:00
memory.h initial import 1995-02-18 01:27:10 +00:00
mkinstalldirs Don't report an error if mkdir fails because a directory was created by another process. 1996-05-03 07:37:52 +00:00
move-if-change * Makefile (subdirs): Add elf first. 1995-02-21 06:15:34 +00:00
munch-tmpl.c * csu/Makefile [$(elf)=yes] (have-initfini): Set to yes. 1995-07-27 09:00:07 +00:00
munch.awk initial import 1995-02-18 01:27:10 +00:00
netdb.h Tue Aug 22 16:49:12 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-08-22 22:47:57 +00:00
NEWS Mon Jul 8 13:37:40 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-08 17:45:03 +00:00
nlist.h initial import 1995-02-18 01:27:10 +00:00
NOTES initial import 1995-02-18 01:27:10 +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
obstack.h initial import 1995-02-18 01:27:10 +00:00
paths.h initial import 1995-02-18 01:27:10 +00:00
poll.h initial import 1995-02-18 01:27:10 +00:00
posix1_lim.h initial import 1995-02-18 01:27:10 +00:00
posix2_lim.h initial import 1995-02-18 01:27:10 +00:00
printf.h initial import 1995-02-18 01:27:10 +00:00
printsources initial import 1995-02-18 01:27:10 +00:00
PROJECTS Fri Jul 26 20:39:42 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-27 00:40:06 +00:00
pwd.h initial import 1995-02-18 01:27:10 +00:00
README Remade for alpha-1.93 1996-08-02 05:27:50 +00:00
README.template Mon May 13 12:03:03 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-13 17:30:42 +00:00
regex.h Wed May 17 16:50:21 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-05-18 09:00:09 +00:00
resolv.h Tue Jun 25 02:59:11 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-06-25 08:56:57 +00:00
Rules Thu Jul 18 12:33:57 1996 Roland McGrath <roland@baalperazim.frob.com> 1996-07-20 12:06:21 +00:00
search.h Sat Sep 16 17:47:19 1995 Ulrich Drepper <drepper@ipd.info.uni-karlsruhe.de> 1995-09-17 20:23:15 +00:00
set-hooks.h initial import 1995-02-18 01:27:10 +00:00
set-init.c Fri May 19 17:16:46 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-05-20 00:13:43 +00:00
setjmp.h initial import 1995-02-18 01:27:10 +00:00
sgtty.h initial import 1995-02-18 01:27:10 +00:00
shlib-versions Wed Jul 17 17:08:48 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-17 19:01:35 +00:00
signal.h initial import 1995-02-18 01:27:10 +00:00
stdio.h * Makefile (subdirs): Replace stdio with stdio-common and $(stdio). 1995-10-17 00:41:39 +00:00
stdlib.h initial import 1995-02-18 01:27:10 +00:00
string.h initial import 1995-02-18 01:27:10 +00:00
strings.h initial import 1995-02-18 01:27:10 +00:00
syslog.h initial import 1995-02-18 01:27:10 +00:00
tar.h initial import 1995-02-18 01:27:10 +00:00
termios.h initial import 1995-02-18 01:27:10 +00:00
time.h initial import 1995-02-18 01:27:10 +00:00
ttyent.h initial import 1995-02-18 01:27:10 +00:00
unistd.h initial import 1995-02-18 01:27:10 +00:00
utime.h Fri Aug 25 12:12:42 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-08-25 19:23:32 +00:00
utmp.h Tue May 28 04:38:10 1996 Ulrich Drepper <drepper@cygnus.com> 1996-05-29 04:48:04 +00:00
values.h Fri May 19 17:16:46 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> 1995-05-20 00:13:43 +00:00
version.c * sysdeps/sparc/elf/start.S: New file. 1996-06-21 21:01:27 +00:00
version.h Wed Jul 17 17:08:48 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-07-17 19:01:35 +00:00
wchar.h Mon Apr 1 13:34:55 1996 Roland McGrath <roland@whiz-bang.gnu.ai.mit.edu> 1996-04-02 13:27:17 +00:00
wctype.h Wed May 1 09:10:04 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> 1996-05-01 13:55:18 +00:00
wordexp.h initial import 1995-02-18 01:27:10 +00:00

This directory contains the version 1.93 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 has been ported to the following
configurations:

		alpha-dec-osf1
		i[345]86-*-bsd4.3
		i[345]86-*-gnu
		i[345]86-*-isc2.2
		i[345]86-*-isc3
		i[345]86-*-linux
		i[345]86-*-sco3.2
		i[345]86-*-sco3.2v4
		i[345]86-*-sysv
		i[345]86-*-sysv4
		i[345]86-force_cpu386-none
		i[345]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

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-1.93-crypt.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.uni-c.dk
[129.142.6.74], 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.uni-c.dk; 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.

See the file INSTALL to find out how to configure, build, install, and port
the GNU C library.

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.

Send bug reports to bug-glibc@prep.ai.mit.edu.

The GNU C Library is free software.  See the file COPYING.LIB for copying
conditions.