diff options
author | Simo Sorce <simo@redhat.com> | 2011-12-29 02:17:15 -0500 |
---|---|---|
committer | Stephen Gallagher <sgallagh@redhat.com> | 2012-03-19 09:45:25 -0400 |
commit | eb2e21b764d03544d8161e9956d7f70b07b75f77 (patch) | |
tree | 46b8808250eca267edee3de248d4d1c811edbf9b /Makefile.am | |
parent | 5f90993426fa2bdc3b3d994c9e85e0805bb92bbc (diff) | |
download | sssd-eb2e21b764d03544d8161e9956d7f70b07b75f77.tar.gz sssd-eb2e21b764d03544d8161e9956d7f70b07b75f77.tar.xz sssd-eb2e21b764d03544d8161e9956d7f70b07b75f77.zip |
nsssrv: shared memory cache server initialization
Diffstat (limited to 'Makefile.am')
-rw-r--r-- | Makefile.am | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am index ab5b6c1ad..8067c9800 100644 --- a/Makefile.am +++ b/Makefile.am @@ -36,6 +36,7 @@ dbpath = @dbpath@ pluginpath = @pluginpath@ pidpath = @pidpath@ pipepath = @pipepath@ +mcpath = @mcpath@ initdir = @initdir@ systemdunitdir = @systemdunitdir@ logpath = @logpath@ @@ -228,6 +229,7 @@ AM_CPPFLAGS = \ -DSSSD_LIBEXEC_PATH=\"$(sssdlibexecdir)\" \ -DSSSD_INTROSPECT_PATH=\"$(dbusinstropectdir)\" \ -DSSSD_CONF_DIR=\"$(sssdconfdir)\" \ + -DSSS_NSS_MCACHE_DIR=\"$(mcpath)\" \ -DSSS_NSS_SOCKET_NAME=\"$(pipepath)/nss\" \ -DSSS_PAM_SOCKET_NAME=\"$(pipepath)/pam\" \ -DSSS_PAM_PRIV_SOCKET_NAME=\"$(pipepath)/private/pam\" \ @@ -339,6 +341,7 @@ dist_noinst_HEADERS = \ src/responder/nss/nsssrv_private.h \ src/responder/nss/nsssrv_netgroup.h \ src/responder/nss/nsssrv_services.h \ + src/responder/nss/nsssrv_mmap_cache.h \ src/responder/common/negcache.h \ src/responder/sudo/sudosrv_private.h \ src/responder/autofs/autofs_private.h \ @@ -488,6 +491,7 @@ sssd_nss_SOURCES = \ src/responder/nss/nsssrv_cmd.c \ src/responder/nss/nsssrv_netgroup.c \ src/responder/nss/nsssrv_services.c \ + src/responder/nss/nsssrv_mmap_cache.c \ $(SSSD_RESPONDER_OBJ) sssd_nss_LDADD = \ $(TDB_LIBS) \ @@ -1363,6 +1367,7 @@ installsssddirs:: $(DESTDIR)$(sssdconfdir) \ $(DESTDIR)$(sssddatadir) \ $(DESTDIR)$(dbpath) \ + $(DESTDIR)$(mcpath) \ $(DESTDIR)$(pidpath) \ $(DESTDIR)$(logpath) \ $(DESTDIR)$(pubconfpath) \ |