about summary refs log tree commit diff
path: root/nss
diff options
context:
space:
mode:
authorUlrich Drepper <drepper@redhat.com>1998-06-23 09:06:34 +0000
committerUlrich Drepper <drepper@redhat.com>1998-06-23 09:06:34 +0000
commit520e73a231f021416db0fa4a9116838f8c8f9054 (patch)
treef01cdf3b7a8de77b9c7d551a4e3fc29f928aef7d /nss
parenta53bad166c677459239011bcb3275b87c8c38584 (diff)
downloadglibc-520e73a231f021416db0fa4a9116838f8c8f9054.tar.gz
glibc-520e73a231f021416db0fa4a9116838f8c8f9054.tar.xz
glibc-520e73a231f021416db0fa4a9116838f8c8f9054.zip
Update.
1998-06-23  Ulrich Drepper  <drepper@cygnus.com>

	* config.make.in: Remove LDAP support.
	* nss/Makefile: Likewise.
Diffstat (limited to 'nss')
-rw-r--r--nss/Makefile13
1 files changed, 1 insertions, 12 deletions
diff --git a/nss/Makefile b/nss/Makefile
index e71794e426..07529c711c 100644
--- a/nss/Makefile
+++ b/nss/Makefile
@@ -41,7 +41,7 @@ tests			= test-netdb
 include ../Makeconfig
 
 # Specify rules for the nss_* modules.  We have some services.
-services		:= files db $(LDAP)
+services		:= files db
 
 extra-libs		= $(services:%=libnss_%)
 # These libraries will be built in the `others' pass rather than
@@ -62,20 +62,12 @@ generated		+= $(filter-out db-alias.c db-netgrp.c, \
 					$(addsuffix .c,$(libnss_db-routines)))
 distribute		+= db-XXX.c
 
-libnss_ldap-routines	:= $(addprefix ldap-,proto) util ldap-nss
-
 
 # Build static module if requested
 ifneq ($(build-static-nss),yes)
 libnss_files-inhibit-o	= $(filter-out .os,$(object-suffixes))
 endif
 libnss_db-inhibit-o	= $(filter-out .os,$(object-suffixes))
-libnss_ldap-inhibit-o	= $(filter-out .os,$(object-suffixes))
-
-# If we compile the LDAP module we need the headers from the LDAP library.
-ifneq ($(LDAP),)
-CPPFLAGS += -I../ldap
-endif
 
 include ../Rules
 
@@ -89,9 +81,6 @@ $(libnss_db-routines:%=$(objpfx)%.c): $(objpfx)db-%.c: nss_files/files-%.c
 	 echo '#include <$<>') > $@.new
 	mv -f $@.new $@
 
-# To complete the LDAP NSS module we need functions from the LDAP library.
-$(objpfx)libnss_ldap.so: $(common-objpfx)ldap/libldap.so
-
 # Depend on libc.so so a DT_NEEDED is generated in the shared objects.
 # This ensures they will load libc.so for needed symbols if loaded by
 # a statically-linked program that hasn't already loaded it.