From ceb91a3f7175307e4fbae929e98063fba8cc9123 Mon Sep 17 00:00:00 2001 From: Simo Sorce Date: Tue, 5 Oct 2010 17:35:16 -0400 Subject: Always detect openldap and mozldap at the same time Slapi plugins must use mozldap because 389 ds is compiled against that. ipa_kpasswd, instead, should be linked against openldap. So always make sure both are available. --- daemons/ipa-kpasswd/Makefile.am | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'daemons/ipa-kpasswd') diff --git a/daemons/ipa-kpasswd/Makefile.am b/daemons/ipa-kpasswd/Makefile.am index 5f95fdef3..ce241ca06 100644 --- a/daemons/ipa-kpasswd/Makefile.am +++ b/daemons/ipa-kpasswd/Makefile.am @@ -8,7 +8,7 @@ INCLUDES = \ -DLIBDIR=\""$(libdir)"\" \ -DLIBEXECDIR=\""$(libexecdir)"\" \ -DDATADIR=\""$(datadir)"\" \ - $(LDAP_CFLAGS) \ + $(OPENLDAP_CFLAGS) \ $(KRB5_CFLAGS) \ $(WARN_CFLAGS) \ $(NULL) @@ -22,7 +22,7 @@ ipa_kpasswd_SOURCES = \ $(NULL) ipa_kpasswd_LDADD = \ - $(LDAP_LIBS) \ + $(OPENLDAP_LIBS) \ $(KRB5_LIBS) \ $(NULL) -- cgit