diff options
author | Andrew Bartlett <abartlet@samba.org> | 2001-09-07 23:56:54 +0000 |
---|---|---|
committer | Andrew Bartlett <abartlet@samba.org> | 2001-09-07 23:56:54 +0000 |
commit | ed8883c5ddb9c3709bf2f842ae7522f2e09110ff (patch) | |
tree | 204aac3de6e2afc29961ca5d8c71684c96a01838 /source3/configure.in | |
parent | 84cca757397dba107fde479bc2043d8412713cf7 (diff) | |
download | samba-ed8883c5ddb9c3709bf2f842ae7522f2e09110ff.tar.gz samba-ed8883c5ddb9c3709bf2f842ae7522f2e09110ff.tar.xz 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.in | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/source3/configure.in b/source3/configure.in index 3cb6965d584..8fabb070f08 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 ;; |