summaryrefslogtreecommitdiff
path: root/source3/configure.in
diff options
context:
space:
mode:
authorAndrew Bartlett <abartlet@samba.org>2001-09-07 23:56:54 +0000
committerAndrew Bartlett <abartlet@samba.org>2001-09-07 23:56:54 +0000
commited8883c5ddb9c3709bf2f842ae7522f2e09110ff (patch)
tree204aac3de6e2afc29961ca5d8c71684c96a01838 /source3/configure.in
parent84cca757397dba107fde479bc2043d8412713cf7 (diff)
downloadsamba-ed8883c5ddb9c3709bf2f842ae7522f2e09110ff.tar.gz
samba-ed8883c5ddb9c3709bf2f842ae7522f2e09110ff.tar.bz2
samba-ed8883c5ddb9c3709bf2f842ae7522f2e09110ff.zip
Change the description on --with-pam_smbpass to make it clearer - some peope
seem to think you need this module for normal samba/PAM operation. rerun autoconf rerun autoheader (Note that --with-pam_smbpass still doesn't build, but at least when it does again only people who actually need it will select it). (This used to be commit bbda3dd7422a434f19ca8968dab8f9f210254c2f)
Diffstat (limited to 'source3/configure.in')
-rw-r--r--source3/configure.in3
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in
index 3cb6965d58..8fabb070f0 100644
--- a/source3/configure.in
+++ b/source3/configure.in
@@ -1672,7 +1672,7 @@ AC_CHECK_LIB(pam, pam_get_data, [AC_DEFINE(HAVE_LIBPAM)])
# check for pam_smbpass support
AC_MSG_CHECKING(whether to use pam_smbpass)
AC_ARG_WITH(pam_smbpass,
-[ --with-pam_smbpass Include the smbpass PAM module (default=no)],
+[ --with-pam_smbpass Build a PAM module to allow other applications to use our smbpasswd file (default=no)],
[ case "$withval" in
yes)
AC_MSG_RESULT(yes)
@@ -1686,7 +1686,6 @@ AC_ARG_WITH(pam_smbpass,
AC_MSG_RESULT([No libpam found -- disabling pam_smbpass])
PAM_MOD=""
else
- AC_DEFINE(WITH_PAM_SMBPASS)
PAM_MOD="bin/pam_smbpass.so"
fi
;;