diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-12-08 22:39:54 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-12-08 22:39:54 +0000 |
commit | 8b80182964bde1fa84333674e454d41e1fa0c8ca (patch) | |
tree | dfdb69a6a515ee5b4152036e710c3ea1fb0f96ec /nss/Makefile | |
parent | 55f44129526d6bae0595300c03fcd681f83ededb (diff) | |
download | glibc-8b80182964bde1fa84333674e454d41e1fa0c8ca.tar glibc-8b80182964bde1fa84333674e454d41e1fa0c8ca.tar.gz glibc-8b80182964bde1fa84333674e454d41e1fa0c8ca.tar.bz2 glibc-8b80182964bde1fa84333674e454d41e1fa0c8ca.zip |
Update.
2000-12-05 H.J. Lu <hjl@gnu.org>
* nss/Makefile (routines): Add getnssent and getnssent_r.
* nss/nsswitch.h (__nss_setent): New internal NSS function.
(__nss_endent): Likewise.
(__nss_getent_r): Likewise.
(__nss_getent): Likewise.
* nss/getnssent_r.c: New file.
* nss/getnssent.c: New file.
* nss/getXXent.c (H_ERRNO_VAR): Updated.
(GETFUNC_NAME): Updated to call __nss_getent ().
* nss/getXXent_r.c (H_ERRNO_VAR_P): New.
(STAYOPEN_TMPVAR): Updated.
(STAYOPEN_VAR): Updated.
(SETFUNC_NAME): Updated to call __nss_setent ().
(ENDFUNC_NAME): Updated to call __nss_endent ().
(INTERNAL (REENTRANT_GETNAME)): Updated to call __nss_getent_r ().
Diffstat (limited to 'nss/Makefile')
-rw-r--r-- | nss/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/nss/Makefile b/nss/Makefile index 4edae25c2e..849680ef3a 100644 --- a/nss/Makefile +++ b/nss/Makefile @@ -27,7 +27,8 @@ distribute := nsswitch.h XXX-lookup.c getXXbyYY.c getXXbyYY_r.c \ nsswitch.conf digits_dots.c function.def # This is the trivial part which goes into libc itself. -routines = nsswitch $(addsuffix -lookup,$(databases)) +routines = nsswitch getnssent getnssent_r \ + $(addsuffix -lookup,$(databases)) # These are the databases that go through nss dispatch. # Caution: if you add a database here, you must add its real name |