summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorAlexander Bokovoy <abokovoy@redhat.com>2013-07-23 21:08:56 +0300
committerAlexander Bokovoy <abokovoy@redhat.com>2013-07-26 16:10:05 +0300
commitd862fc6fc65f1fb5ff0582e3561a7ab988af9432 (patch)
treea175494a22ae321ea89c410afb53d79d14d9f375 /configure.ac
parent633c4c92b73efeb3d660b70480108b0db41fa3bd (diff)
downloadslapi-nis-freeipa-nss-compat.tar.gz
slapi-nis-freeipa-nss-compat.tar.xz
slapi-nis-freeipa-nss-compat.zip
WIP compat plugin: solve deadlock when looking up SSSD usersfreeipa-nss-compat
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac10
1 files changed, 5 insertions, 5 deletions
diff --git a/configure.ac b/configure.ac
index 085f51d..54464f8 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
-AC_INIT(slapi-nis,0.47)
+AC_INIT(slapi-nis,0.47.5)
AC_CONFIG_MACRO_DIR([m4])
AM_INIT_AUTOMAKE(foreign)
LT_INIT([disable-static])
@@ -321,18 +321,18 @@ if pkg-config sss_nss_idmap 2> /dev/null ; then
SSS_NSS_IDMAP_LIBS=
fi
else
- if test $use_sss_idmap = yes ; then
+ if test $use_sss_nss_idmap = yes ; then
PKG_CHECK_MODULES(SSS_NSS_IDMAP,sss_nss_idmap)
else
SSS_NSS_IDMAP_CFLAGS=
SSS_NSS_IDMAP_LIBS=
fi
fi
-AM_CONDITIONAL([SSS_NSS_IDMAP], [test x$SSS_NSS_IDMAP_LIBS != x])
+AM_CONDITIONAL([SSS_NSS_IDMAP], [test "x$SSS_NSS_IDMAP_LIBS" != x])
AC_SUBST(SSS_NSS_IDMAP_CFLAGS)
AC_SUBST(SSS_NSS_IDMAP_LIBS)
-if test x$SSS_NSS_IDMAP_LIBS != x ; then
+if test "x$SSS_NSS_IDMAP_LIBS" != x ; then
AC_CHECK_HEADERS(security/pam_appl.h)
if test x$ac_cv_header_security_pam_appl_h = xyes ; then
use_pam=yes
@@ -444,7 +444,7 @@ AC_DEFINE_UNQUOTED(SCH_CONTAINER_CONFIGURATION_ATTR_ATTR,"$attrattr",
[Define to name of the attribute which is used to specify attributes to be used when constructing entries.])
sssdattr=schema-compat-lookup-sssd
AC_DEFINE_UNQUOTED(SCH_CONTAINER_CONFIGURATION_SSSD_ATTR,"$sssdattr",
- [Define to name of the attribute which dictates whether or not SSSD on FreeIPA master is consulted about trusted domains' users.])
+ [Define to name of the attribute to cause the tree to talk to SSSD on FreeIPA master to resolve trusted domains' users and groups. The value of the attribute is either 'user' or 'group'.])
sssdminidattr=schema-compat-sssd-min-id
AC_DEFINE_UNQUOTED(SCH_CONTAINER_CONFIGURATION_SSSD_MIN_ID_ATTR,"$sssdminidattr",
[Define to name of the attribute which is used to define lower bound of IDs (uid or gid) looked up through sssd. Everything below is not considered belonging to trusted domains.])