diff options
author | Arjun Shankar <arjun@redhat.com> | 2023-10-02 14:55:19 +0200 |
---|---|---|
committer | Arjun Shankar <arjun@redhat.com> | 2023-10-24 12:30:59 +0200 |
commit | 4298586619e4a8cf4ba0a5a9da31ae80efac173c (patch) | |
tree | d5c5d070888a487df01e417d1b4b7e94232f06f1 /inet/Makefile | |
parent | c6b577caefb7ea2f9a73229f94703792b66f7a8f (diff) | |
download | glibc-4298586619e4a8cf4ba0a5a9da31ae80efac173c.zip glibc-4298586619e4a8cf4ba0a5a9da31ae80efac173c.tar.gz glibc-4298586619e4a8cf4ba0a5a9da31ae80efac173c.tar.bz2 |
Move 'aliases' routines from 'inet' into 'nss'
The aliases routines are entry points for nss functionality. This
commit moves aliases.h and the aliases routines from the 'inet'
subdirectory to 'nss', and adjusts any external references.
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
Diffstat (limited to 'inet/Makefile')
-rw-r--r-- | inet/Makefile | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/inet/Makefile b/inet/Makefile index 9db7f94..bd3dc58 100644 --- a/inet/Makefile +++ b/inet/Makefile @@ -24,7 +24,6 @@ include ../Makeconfig headers := \ $(wildcard arpa/*.h protocols/*.h) \ - aliases.h \ bits/in.h \ ifaddrs.h \ netinet/ether.h \ @@ -49,10 +48,6 @@ routines := \ ether_ntoa \ ether_ntoa_r \ ether_ntoh \ - getaliasent \ - getaliasent_r \ - getaliasname \ - getaliasname_r \ gethstbyad \ gethstbyad_r \ gethstbynm \ @@ -176,8 +171,6 @@ CFLAGS-getnetbyad_r.c += -fexceptions CFLAGS-getnetbyad.c += -fexceptions CFLAGS-getnetent_r.c += -fexceptions CFLAGS-getnetent.c += -fexceptions -CFLAGS-getaliasent_r.c += -fexceptions -CFLAGS-getaliasent.c += -fexceptions CFLAGS-getrpcent_r.c += -fexceptions CFLAGS-getrpcent.c += -fexceptions CFLAGS-getservent_r.c += -fexceptions |