summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArthur de Jong <arthur@arthurdejong.org>2010-10-11 19:35:18 +0000
committerArthur de Jong <arthur@arthurdejong.org>2010-10-11 19:35:18 +0000
commit3941082d1dcdb483fa2f6cb4d094140234bc0aed (patch)
tree42ced180a8bdc98aaf47eccccb2f90f3cb7bd4e9
parent7abeeebdce8c63900d689381cf155a7c952a1107 (diff)
build Solaris NSS flavour without aliases for now
git-svn-id: http://arthurdejong.org/svn/nss-pam-ldapd/nss-pam-ldapd-solaris@1260 ef36b2f9-881f-0410-afb5-c4e39611909c
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f6dba53..04bd05b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -405,7 +405,10 @@ then
AC_MSG_CHECKING([which NSS maps to build])
if test "x$with_nss_ldap_maps" = "xall"
then
- with_nss_ldap_maps="aliases,ethers,group,hosts,netgroup,networks,passwd,protocols,rpc,services,shadow"
+ case "$with_nss_flavour" in
+ glibc) with_nss_ldap_maps="aliases,ethers,group,hosts,netgroup,networks,passwd,protocols,rpc,services,shadow" ;;
+ solaris) with_nss_ldap_maps="ethers,group,hosts,netgroup,networks,passwd,protocols,rpc,services,shadow" ;;
+ esac
fi
AC_MSG_RESULT($with_nss_ldap_maps)
NSS_MODULE_OBJS="`echo "$with_nss_ldap_maps " | sed 's/,/ /g;s/ */.$(OBJEXT) /g'`"