summaryrefslogtreecommitdiffstats
path: root/src/external
diff options
context:
space:
mode:
authorStephen Gallagher <sgallagh@redhat.com>2012-02-22 15:48:37 -0500
committerStephen Gallagher <sgallagh@redhat.com>2012-02-27 09:32:00 -0500
commit3b917f1d971d034cc758ceb5e215edb59afd9105 (patch)
tree542acd1141ab40ed64d022e830df23d30a5d4830 /src/external
parentf3dc9ac52a808fcbedc7fb1ae83964b523c72df2 (diff)
downloadsssd_unused-3b917f1d971d034cc758ceb5e215edb59afd9105.tar.gz
sssd_unused-3b917f1d971d034cc758ceb5e215edb59afd9105.tar.xz
sssd_unused-3b917f1d971d034cc758ceb5e215edb59afd9105.zip
Eliminate build-time requirement for nscd
We will now use the autodetected location if available, or else fall back to a value provided by --with-nscd in configure and finally resort to a hard-coded default of /usr/sbin/nscd.
Diffstat (limited to 'src/external')
-rw-r--r--src/external/nscd.m48
1 files changed, 4 insertions, 4 deletions
diff --git a/src/external/nscd.m4 b/src/external/nscd.m4
index f9f54c58..d0f12916 100644
--- a/src/external/nscd.m4
+++ b/src/external/nscd.m4
@@ -1,9 +1,9 @@
-AC_PATH_PROG(NSCD, nscd)
+AC_PATH_PROG(NSCD, nscd, $NSCD_PATH)
AC_MSG_CHECKING(for nscd)
+AC_DEFINE_UNQUOTED([NSCD_PATH], "$NSCD", [The path to nscd, if available])
+
if test -x "$NSCD"; then
- AC_DEFINE_UNQUOTED([NSCD_PATH], "$NSCD", [The path to nscd, if available])
AC_MSG_RESULT(yes)
else
- AC_MSG_RESULT(no. Manipulating nscd cache will not be available.)
+ AC_MSG_RESULT([not installed, assuming standard location])
fi
-