From 963e96f3a980b20925e21ed2f9d3744c21802cce Mon Sep 17 00:00:00 2001 From: Andrew Tridgell Date: Sat, 8 Aug 1998 01:15:14 +0000 Subject: added --with-nisplus-home option (This used to be commit 70000c21909a154344b489e8aa18a5868ff52865) --- source3/configure.in | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) (limited to 'source3/configure.in') diff --git a/source3/configure.in b/source3/configure.in index dc16c724d6..4f62df4b17 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -386,6 +386,24 @@ AC_ARG_WITH(nisplus, AC_MSG_RESULT(no) ) +################################################# +# check for a NISPLUS_HOME support +AC_MSG_CHECKING(whether to use NISPLUS_HOME) +AC_ARG_WITH(nisplus-home, +[ --with-nisplus-home Include NISPLUS_HOME support + --without-nisplus-home Don't include NISPLUS_HOME support (default)], +[ case "$withval" in + yes) + AC_MSG_RESULT(yes) + AC_DEFINE(WITH_NISPLUS_HOME) + ;; + *) + AC_MSG_RESULT(no) + ;; + esac ], + AC_MSG_RESULT(no) +) + ################################################# # check for the secure socket layer AC_MSG_CHECKING(whether to use SSL) -- cgit