diff options
author | Ulrich Drepper <drepper@redhat.com> | 2003-06-10 08:58:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2003-06-10 08:58:05 +0000 |
commit | 1dc869d13c77297661bf7ba4bde4c879818149da (patch) | |
tree | 286fc8327a3a4fdc742d90b8ca8bd278f3616b8d /inet | |
parent | 06120d793a3ae31f8f510f220c8a0a8e23b6a177 (diff) | |
download | glibc-1dc869d13c77297661bf7ba4bde4c879818149da.tar glibc-1dc869d13c77297661bf7ba4bde4c879818149da.tar.gz glibc-1dc869d13c77297661bf7ba4bde4c879818149da.tar.bz2 glibc-1dc869d13c77297661bf7ba4bde4c879818149da.zip |
Update.
* inet/Makefile (aux): Add check_fd.
* include/ifaddrs.h: Add prototype for __check_fd.
* sysdeps/generic/check_fd.c: New file.
* sysdeps/unix/sysv/linux/check_fd.c: New file.
* sysdeps/unix/sysv/linux/ifaddrs.h (__no_netlink_support): Renamed
from no_netlink_support. Export.
* sysdeps/posix/getaddrinfo.c (getaddrinfo): Don't call getifaddrs,
call __check_pf.
* sysdeps/generic/ifaddrs.h: Add libc_hidden_def.
Diffstat (limited to 'inet')
-rw-r--r-- | inet/Makefile | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/inet/Makefile b/inet/Makefile index 60a1a2e8fe..b276877099 100644 --- a/inet/Makefile +++ b/inet/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991-1999,2000,01,02 Free Software Foundation, Inc. +# Copyright (C) 1991-2002, 2003 Free Software Foundation, Inc. # This file is part of the GNU C Library. # The GNU C Library is free software; you can redistribute it and/or @@ -47,6 +47,8 @@ routines := htonl htons \ getaliasent_r getaliasent getaliasname getaliasname_r \ in6_addr getnameinfo if_index ifaddrs +aux := check_pf + tests := htontest test_ifindex tst-ntoa tst-ether_aton tst-network \ tst-gethnm test-ifaddrs |