From af4ffe1001adcc0a96897e426d26444f07af9aa1 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Thu, 26 Sep 2013 10:27:33 +0200 Subject: Add CIFS idmap plugin https://fedorahosted.org/sssd/ticket/1534 --- Makefile.am | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+) (limited to 'Makefile.am') diff --git a/Makefile.am b/Makefile.am index ff1e71e7..98a298ea 100644 --- a/Makefile.am +++ b/Makefile.am @@ -32,6 +32,9 @@ endif if BUILD_PAC_RESPONDER krb5authdata_plugindir = @krb5authdatapluginpath@ endif +if BUILD_CIFS_IDMAP_PLUGIN +cifsplugindir = @cifspluginpath@ +endif sssdconfdir = $(sysconfdir)/sssd sssddatadir = $(datadir)/sssd sssdapiplugindir = $(sssddatadir)/sssd.api.d @@ -192,6 +195,11 @@ krb5authdata_plugin_LTLIBRARIES = \ sssd_pac_plugin.la endif +if BUILD_CIFS_IDMAP_PLUGIN +cifsplugin_LTLIBRARIES = \ + cifs_idmap_sss.la +endif + noinst_LTLIBRARIES = pkglib_LTLIBRARIES = \ @@ -1878,6 +1886,19 @@ pysss_nss_idmap_la_LDFLAGS = \ -module endif +if BUILD_CIFS_IDMAP_PLUGIN +cifs_idmap_sss_la_SOURCES = \ + src/lib/cifs_idmap_sss/cifs_idmap_sss.c +cifs_idmap_sss_la_LIBADD = \ + libsss_idmap.la \ + libsss_nss_idmap.la +cifs_idmap_sss_la_CFLAGS = \ + $(AM_CFLAGS) +cifs_idmap_sss_la_LDFLAGS = \ + -avoid-version \ + -module +endif + ################ # TRANSLATIONS # ################ -- cgit