From 29ddbc610ccc14eb70dcb7ffde7c1f5cc2b95203 Mon Sep 17 00:00:00 2001 From: "W. Michael Petullo" Date: Thu, 1 May 2008 09:57:32 -0400 Subject: This patch begins the process of replacing OpenLDAP with mozldap. FreeIPA relies on RedHat's Directory Server, which uses mozldap. A FreeIPA build using mozldap would reduce the project's dependencies and redundant code. In addition, mozldap uses NSS instead of OpenSSL. This is beneficial for the reasons listed in [1]. [1] http://fedoraproject.org/wiki/FedoraCryptoConsolidation --- ipa-client/Makefile.am | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'ipa-client/Makefile.am') diff --git a/ipa-client/Makefile.am b/ipa-client/Makefile.am index 3379eea8c..639dbb813 100644 --- a/ipa-client/Makefile.am +++ b/ipa-client/Makefile.am @@ -13,7 +13,8 @@ INCLUDES = \ -DLIBEXECDIR=\""$(libexecdir)"\" \ -DDATADIR=\""$(datadir)"\" \ $(KRB5_CFLAGS) \ - $(LDAP_CFLAGS) \ + $(OPENLDAP_CFLAGS) \ + $(MOZLDAP_CFLAGS) \ $(SASL_CFLAGS) \ $(POPT_CFLAGS) \ $(WARN_CFLAGS) \ @@ -29,7 +30,8 @@ ipa_getkeytab_SOURCES = \ ipa_getkeytab_LDADD = \ $(KRB5_LIBS) \ - $(LDAP_LIBS) \ + $(OPENLDAP_LIBS) \ + $(MOZLDAP_LIBS) \ $(SASL_LIBS) \ $(POPT_LIBS) \ $(NULL) -- cgit