aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>1996-05-23 03:15:42 +0000
committerRoland McGrath <roland@gnu.org>1996-05-23 03:15:42 +0000
commitfa0bc87c32d02cd81ec4d0ae00e0d943c683e6e1 (patch)
tree197250e2e9e1f2c900d3bf042dbf14898dc0fb73
parente685238c901f1a7aa0c1956e63cc9f2de5599998 (diff)
downloadglibc-fa0bc87c32d02cd81ec4d0ae00e0d943c683e6e1.tar.xz
glibc-fa0bc87c32d02cd81ec4d0ae00e0d943c683e6e1.zip
Wed May 22 22:10:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* stdlib/canonicalize.c: New file. * stdlib/stdlib.h: Declare canonicalize_file_name, realpath. * stdlib/Makefile (routines): Add canonicalize. * posix/unistd.h: Declare __canonicalize_directory_name_internal. Thu May 23 00:01:10 1996 Ulrich Drepper <drepper@cygnus.com> * db/recno/rec_seq.c: Prevent `sccsid' definition by using the same #if condition as in the other db files. * intl/Makefile: Add -Wno-unused CFLAGS for compilation of bindtextdom.c, finddomain.c, and localealias.c. * intl/dcgettext.c: Don't define prototype for getcwd() when compiling in glibc. * libio/cleanup.c: Add prototype for _IO_register_cleanup. * libio/filedoalloc.c, libio/fileops.c, libio/iopopen.c: Don't define _POSIX_SOURCE unconditionally. * libio/filedoalloc.c, libio/iopopen.c: Include <unistd.h> if compiling in glibc. * libio/fileops.c (_IO_file_close_it): Don't sync file, call flush instead. This relaxes the rules from POSIX.1 about changing the active handle a bit. * libio/iofopncook.c (struct _IO_cookie_file): Move definition into <libio.h>. Add prototypes for local functions to prevent warnings. * libio/iopopen.c: Change prototypes for _IO_fork, _IO_pipe, and _IO_DUP2 to contain complete parameter list. * libio/libio.h: Add definition of struct _IO_cookie_file. * libio/libioP.h: Add prototypes for _IO_vasprintf, _IO_vdprintf, and _IO_vsnprintf. * libio/memstream.c: Include <stdio.h>. * libio/stdio.h: Add prototypes for fopencookie, __stdio_gen_tempname, __vfscanf, __vsscanf, and __vsnprintf. * libio/strops.c: Avoid useless expression in `for' initializer. * locale/findlocale.c: Add some casts to prevent warnings. * locale/programs/locfile.c (write_locale_data): Don't use double `/' in locale binary file. * posix/unistd.h: Remove prototype for `reboot'. Update from bind-4.9.4-T1A. * resolv/Makefile (routines): Add inet_ntop and inet_pton. * resolv/arpa/nameser.h: Add definition of IN6ADDRSZ. * resolv/gethnamaddr.c, resolv/getnetnamadr.c, resolv/res_comp.c, resolv/res_debug.c, resolv/res_init.c * resolv/inet_ntop.c, resolv/inet_pton.c: New files. * resolv/resolv.h: Add RES_USE_INET6 flag. (__dn_isvalid): Renamed to __res_dnok. Add prototypes for __res_ownok and __res_mailok. * stdio-common/Makefile: Add -Wno-unused to CFLAGS for _itoa.c. * stdio-common/getline.c, stdio-common/vfscanf.c, sysdeps/posix/tempname.c: Don't use <ansidecl.h> anymore. * sysdeps/unix/sysv/linux/Makefile [$subdir == misc] (sysdep_routines): Add s_reboot. (install-others): Add $(includedir)/sys/syscall.h. New rule for $(includedir)/sys/syscall.h to produce from <asm/unistd.h>. * sysdeps/unix/sysv/linux/reboot.c: New file. Make single argument function call 3 argument system call. * sysdeps/unix/sysv/linux/sys/reboot.h: New file. Linux specific definition for reboot function. * sysdeps/unix/sysv/linux/syscall.h: Remove old and obsolete comment. * sysdeps/unix/sysv/linux/syscalls.list: Rename function for reboot syscall to __syscall_reboot. * wcsmbs/wchar.h: Protect prototypes for wcstof and wcstold by __USE_GNU, not USE_GNU. Tue May 21 21:55:49 1996 David Mosberger-Tang <davidm@AZStarNet.com> * locale/programs/charset.c, locale/programs/ld-collate.c: Add casts to prevent warnings on 64-bit machines. * locale/programs/ld-monetary.c: Don't do unnecessary tests for int_frac_digits and frac_digits which only produce warnings. Mon May 13 23:45:29 1996 David Mosberger-Tang <davidm@AZStarNet.com> * inet/arpa/inet.h: Backup return type of inet_addr to u_long. * resolv/inet_addr.c: Likewise. * resolv/Makefile (distribute): Add res_hconf.h (routines): Add res_hconf. * resolv/gethnamaddr.c: Add support for /etc/host.conf. * resolv/res_init.c: Initialize /etc/host.conf reader. * resolv/res_hconf.c, resolv/res_hconf.h: New files. Implementation of reading /etc/host.conf. Wed May 22 21:21:15 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> * Rules (%.out rules): Prepend $($*-ENV) to the command. * sysdeps/unix/sysv/linux/i386/brk.c (___brk_addr): Define as weak alias for __curbrk. Wed May 22 19:37:27 1996 Miles Bader <miles@gnu.ai.mit.edu> * hurd/hurdexec.c (_hurd_exec): Pass INIT_TRACEMASK. * hurd/hurdmsg.c (set_int): Support INIT_TRACEMASK. Wed May 22 18:47:31 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu> * sysdeps/mach/hurd/getcwd.c (_hurd_canonicalize_directory_name_internal): New function, broken out of __getcwd. (__getcwd): Use it. (__canonicalize_directory_name_internal): New function using it. * sysdeps/posix/getcwd.c (__canonicalize_directory_name_internal): New function, broken out of __getcwd. (__getcwd): Use it. Wed May 22 18:14:05 1996 Miles Bader <miles@gnu.ai.mit.edu> * string/argz-create.c (__argz_create): Correctly calculate length. * string/argz-extract.c (__argz_extract): Add terminating 0 entry. * hurd/hurdstartup.c (_hurd_startup): ... and don't so here. [HAVE_VMSDIR_H]: Include "vmsdir.h". (glob) [VMS]: Don't grok ~.
-rw-r--r--ChangeLog151
-rw-r--r--Rules8
-rw-r--r--db/recno/rec_seq.c2
-rw-r--r--inet/arpa/inet.h2
-rw-r--r--intl/Makefile4
-rw-r--r--intl/dcgettext.c10
-rw-r--r--libio/cleanup.c3
-rw-r--r--libio/filedoalloc.c7
-rw-r--r--libio/fileops.c10
-rw-r--r--libio/iofopncook.c16
-rw-r--r--libio/iopopen.c13
-rw-r--r--libio/libio.h10
-rw-r--r--libio/libioP.h7
-rw-r--r--libio/memstream.c3
-rw-r--r--libio/stdio.h8
-rw-r--r--libio/strops.c2
-rw-r--r--locale/findlocale.c4
-rw-r--r--locale/programs/charset.c8
-rw-r--r--locale/programs/ld-collate.c2
-rw-r--r--locale/programs/ld-monetary.c4
-rw-r--r--locale/programs/locfile.c4
-rw-r--r--manual/errno.texi2
-rw-r--r--posix/unistd.h13
-rw-r--r--resolv/Makefile5
-rw-r--r--resolv/arpa/nameser.h13
-rw-r--r--resolv/gethnamaddr.c736
-rw-r--r--resolv/getnetnamadr.c4
-rw-r--r--resolv/inet_addr.c14
-rw-r--r--resolv/inet_ntop.c189
-rw-r--r--resolv/inet_pton.c223
-rw-r--r--resolv/res_comp.c95
-rw-r--r--resolv/res_debug.c21
-rw-r--r--resolv/res_hconf.c566
-rw-r--r--resolv/res_hconf.h50
-rw-r--r--resolv/res_init.c24
-rw-r--r--resolv/resolv.h17
-rw-r--r--stdio-common/Makefile1
-rw-r--r--stdio-common/getline.c7
-rw-r--r--stdio-common/vfscanf.c1
-rw-r--r--stdlib/Makefile2
-rw-r--r--stdlib/canonicalize.c196
-rw-r--r--stdlib/stdlib.h18
-rw-r--r--sysdeps/mach/hurd/getcwd.c47
-rw-r--r--sysdeps/posix/getcwd.c29
-rw-r--r--sysdeps/posix/tempname.c19
-rw-r--r--sysdeps/unix/sysv/linux/Makefile23
-rw-r--r--sysdeps/unix/sysv/linux/reboot.c28
-rw-r--r--sysdeps/unix/sysv/linux/sys/reboot.h43
-rw-r--r--sysdeps/unix/sysv/linux/syscall.h10
-rw-r--r--sysdeps/unix/sysv/linux/syscalls.list2
-rw-r--r--wcsmbs/wchar.h2
51 files changed, 2371 insertions, 307 deletions
diff --git a/ChangeLog b/ChangeLog
index 1f057025e7..03542f6aca 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,157 @@
+Wed May 22 22:10:01 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
+
+ * stdlib/canonicalize.c: New file.
+ * stdlib/stdlib.h: Declare canonicalize_file_name, realpath.
+ * stdlib/Makefile (routines): Add canonicalize.
+
+ * posix/unistd.h: Declare __canonicalize_directory_name_internal.
+
+Thu May 23 00:01:10 1996 Ulrich Drepper <drepper@cygnus.com>
+
+ * db/recno/rec_seq.c: Prevent `sccsid' definition by using the
+ same #if condition as in the other db files.
+
+ * intl/Makefile: Add -Wno-unused CFLAGS for compilation of
+ bindtextdom.c, finddomain.c, and localealias.c.
+
+ * intl/dcgettext.c: Don't define prototype for getcwd() when
+ compiling in glibc.
+
+ * libio/cleanup.c: Add prototype for _IO_register_cleanup.
+
+ * libio/filedoalloc.c, libio/fileops.c, libio/iopopen.c: Don't
+ define _POSIX_SOURCE unconditionally.
+
+ * libio/filedoalloc.c, libio/iopopen.c: Include <unistd.h> if
+ compiling in glibc.
+
+ * libio/fileops.c (_IO_file_close_it): Don't sync file, call
+ flush instead. This relaxes the rules from POSIX.1 about
+ changing the active handle a bit.
+
+ * libio/iofopncook.c (struct _IO_cookie_file): Move definition
+ into <libio.h>.
+ Add prototypes for local functions to prevent warnings.
+
+ * libio/iopopen.c: Change prototypes for _IO_fork, _IO_pipe, and
+ _IO_DUP2 to contain complete parameter list.
+
+ * libio/libio.h: Add definition of struct _IO_cookie_file.
+
+ * libio/libioP.h: Add prototypes for _IO_vasprintf, _IO_vdprintf,
+ and _IO_vsnprintf.
+
+ * libio/memstream.c: Include <stdio.h>.
+
+ * libio/stdio.h: Add prototypes for fopencookie,
+ __stdio_gen_tempname, __vfscanf, __vsscanf, and __vsnprintf.
+
+ * libio/strops.c: Avoid useless expression in `for' initializer.
+
+ * locale/findlocale.c: Add some casts to prevent warnings.
+
+ * locale/programs/locfile.c (write_locale_data): Don't use
+ double `/' in locale binary file.
+
+ * posix/unistd.h: Remove prototype for `reboot'.
+
+ Update from bind-4.9.4-T1A.
+ * resolv/Makefile (routines): Add inet_ntop and inet_pton.
+ * resolv/arpa/nameser.h: Add definition of IN6ADDRSZ.
+ * resolv/gethnamaddr.c, resolv/getnetnamadr.c, resolv/res_comp.c,
+ resolv/res_debug.c, resolv/res_init.c
+
+ * resolv/inet_ntop.c, resolv/inet_pton.c: New files.
+
+ * resolv/resolv.h: Add RES_USE_INET6 flag.
+ (__dn_isvalid): Renamed to __res_dnok.
+ Add prototypes for __res_ownok and __res_mailok.
+
+ * stdio-common/Makefile: Add -Wno-unused to CFLAGS for _itoa.c.
+
+ * stdio-common/getline.c, stdio-common/vfscanf.c,
+ sysdeps/posix/tempname.c: Don't use <ansidecl.h> anymore.
+
+ * sysdeps/unix/sysv/linux/Makefile [$subdir == misc]
+ (sysdep_routines): Add s_reboot.
+ (install-others): Add $(includedir)/sys/syscall.h.
+ New rule for $(includedir)/sys/syscall.h to produce from
+ <asm/unistd.h>.
+
+ * sysdeps/unix/sysv/linux/reboot.c: New file. Make single
+ argument function call 3 argument system call.
+
+ * sysdeps/unix/sysv/linux/sys/reboot.h: New file. Linux specific
+ definition for reboot function.
+
+ * sysdeps/unix/sysv/linux/syscall.h: Remove old and obsolete
+ comment.
+
+ * sysdeps/unix/sysv/linux/syscalls.list: Rename function for
+ reboot syscall to __syscall_reboot.
+
+ * wcsmbs/wchar.h: Protect prototypes for wcstof and wcstold by
+ __USE_GNU, not USE_GNU.
+
+Tue May 21 21:55:49 1996 David Mosberger-Tang <davidm@AZStarNet.com>
+
+ * locale/programs/charset.c, locale/programs/ld-collate.c:
+ Add casts to prevent warnings on 64-bit machines.
+
+ * locale/programs/ld-monetary.c: Don't do unnecessary tests for
+ int_frac_digits and frac_digits which only produce warnings.
+
+Mon May 13 23:45:29 1996 David Mosberger-Tang <davidm@AZStarNet.com>
+
+ * inet/arpa/inet.h: Backup return type of inet_addr to u_long.
+ * resolv/inet_addr.c: Likewise.
+
+ * resolv/Makefile (distribute): Add res_hconf.h
+ (routines): Add res_hconf.
+
+ * resolv/gethnamaddr.c: Add support for /etc/host.conf.
+
+ * resolv/res_init.c: Initialize /etc/host.conf reader.
+
+ * resolv/res_hconf.c, resolv/res_hconf.h: New files.
+ Implementation of reading /etc/host.conf.
+
+Wed May 22 21:21:15 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
+
+ * Rules (%.out rules): Prepend $($*-ENV) to the command.
+
+ * sysdeps/unix/sysv/linux/i386/brk.c (___brk_addr): Define as weak
+ alias for __curbrk.
+
+Wed May 22 19:37:27 1996 Miles Bader <miles@gnu.ai.mit.edu>
+
+ * hurd/hurdexec.c (_hurd_exec): Pass INIT_TRACEMASK.
+ * hurd/hurdmsg.c (set_int): Support INIT_TRACEMASK.
+
+Wed May 22 18:47:31 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
+
+ * sysdeps/mach/hurd/getcwd.c
+ (_hurd_canonicalize_directory_name_internal): New function, broken out
+ of __getcwd.
+ (__getcwd): Use it.
+ (__canonicalize_directory_name_internal): New function using it.
+
+ * sysdeps/posix/getcwd.c (__canonicalize_directory_name_internal): New
+ function, broken out of __getcwd.
+ (__getcwd): Use it.
+
+Wed May 22 18:14:05 1996 Miles Bader <miles@gnu.ai.mit.edu>
+
+ * string/argz-create.c (__argz_create): Correctly calculate length.
+
+ * string/argz-extract.c (__argz_extract): Add terminating 0 entry.
+ * hurd/hurdstartup.c (_hurd_startup): ... and don't so here.
+
Wed May 22 17:22:14 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* posix/glob.c [VMS]: Don't include <pwd.h>.
+ [HAVE_VMSDIR_H]: Include "vmsdir.h".
+ (glob) [VMS]: Don't grok ~.
Wed May 22 14:46:53 1996 Miles Bader <miles@gnu.ai.mit.edu>
diff --git a/Rules b/Rules
index 517c3a6546..2eddd6ecff 100644
--- a/Rules
+++ b/Rules
@@ -96,13 +96,13 @@ ifneq "$(strip $(tests))" ""
# These are the implicit rules for making test outputs
# from the test programs and whatever input files are present.
$(objpfx)%.out: %.args $(objpfx)% %.input
- $(built-program-cmd) `cat $(word 1,$^)` < $(word 3,$^) > $@
+ $($*-ENV) $(built-program-cmd) `cat $(word 1,$^)` < $(word 3,$^) > $@
$(objpfx)%.out: %.args $(objpfx)%
- $(built-program-cmd) `cat $(word 1,$^)` > $@
+ $($*-ENV) $(built-program-cmd) `cat $(word 1,$^)` > $@
$(objpfx)%.out: %.input $(objpfx)%
- $(built-program-cmd) < $(word 1,$^) > $@
+ $($*-ENV) $(built-program-cmd) < $(word 1,$^) > $@
$(objpfx)%.out: /dev/null $(objpfx)% # Make it 2nd arg for canned sequence.
- $(built-program-cmd) > $@
+ $($*-ENV) $(built-program-cmd) > $@
endif # tests
.PHONY: distclean realclean subdir_distclean subdir_realclean \
diff --git a/db/recno/rec_seq.c b/db/recno/rec_seq.c
index f80992c598..2f8c7695c5 100644
--- a/db/recno/rec_seq.c
+++ b/db/recno/rec_seq.c
@@ -31,7 +31,7 @@
* SUCH DAMAGE.
*/
-#ifndef lint
+#if defined(LIBC_SCCS) && !defined(lint)
static char sccsid[] = "@(#)rec_seq.c 8.3 (Berkeley) 7/14/94";
#endif /* not lint */
diff --git a/inet/arpa/inet.h b/inet/arpa/inet.h
index 2413dcf76e..6cb672f336 100644
--- a/inet/arpa/inet.h
+++ b/inet/arpa/inet.h
@@ -42,7 +42,7 @@
#include <sys/types.h>
__BEGIN_DECLS
-u_int32_t inet_addr __P((const char *));
+u_long inet_addr __P((const char *));
int inet_aton __P((const char *, struct in_addr *));
u_int32_t inet_lnaof __P((struct in_addr));
struct in_addr inet_makeaddr __P((u_int32_t , u_int32_t));
diff --git a/intl/Makefile b/intl/Makefile
index 9d97088d4a..01e1383cb8 100644
--- a/intl/Makefile
+++ b/intl/Makefile
@@ -50,3 +50,7 @@ test ! -d CVS || cvs commit -m'Updated from $<' $@
endef
endif
+
+CFLAGS-bindtextdom.c = -Wno-unused
+CFLAGS-finddomain.c = -Wno-unused
+CFLAGS-localealias.c = -Wno-unused
diff --git a/intl/dcgettext.c b/intl/dcgettext.c
index 6c8963f720..a18be16631 100644
--- a/intl/dcgettext.c
+++ b/intl/dcgettext.c
@@ -87,13 +87,13 @@ void free ();
file and the name space must not be polluted. */
# define getcwd __getcwd
# define stpcpy __stpcpy
-#endif
-
-#if !defined HAVE_GETCWD && !defined _LIBC
-char *getwd ();
-# define getcwd(buf, max) getwd (buf)
#else
+# if !defined HAVE_GETCWD
+char *getwd ();
+# define getcwd(buf, max) getwd (buf)
+# else</