Skip to content
Snippets Groups Projects
Commit 50dafec4 authored by Julio Sánchez Fernández's avatar Julio Sánchez Fernández
Browse files

Fixed an irritating problem with nss_ldap and pam_ldap. Since these

modules are dynamically loaded, they summon libldap when needed.
However, depending on the security libraries available when the
shared libldap was built, the latter brings up other dependencies.
On some platforms, it seems that no solution is available: no
indirect dynamic dependencies.  But for some platforms where this
is supported (in particular, Linux), the shared libldap must
contain info on what other dynamic libraries it needs.  We were
failing to put this info into the shared library.  This patch
seems to fix it.
parent b9fb4c44
No related branches found
No related tags found
No related merge requests found
......@@ -35,6 +35,7 @@ LDAP_LIBDIR= ../../libraries
XLIBS = -lldap -llber -llutil
XXLIBS = $(SECURITY_LIBS) $(TLS_LIBS)
UNIX_XXLIBS = $(XXLIBS)
LINKAGE = @LT_LIB_LINKAGE@
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment