1
0
mirror of https://github.com/samba-team/samba.git synced 2025-01-26 10:04:02 +03:00

s3: build with pam support when possible

This commit is contained in:
Björn Jacke 2009-09-17 21:04:52 +02:00
parent fc20da50a6
commit 9e49ad558e

View File

@ -4117,12 +4117,12 @@ AC_ARG_WITH(cifsupcall,
# /usr/include/pam. # /usr/include/pam.
with_pam_for_crypt=no with_pam_for_crypt=no
try_pam=no try_pam=auto
AC_MSG_CHECKING(whether to try PAM support) AC_MSG_CHECKING(whether to try PAM support)
AC_ARG_WITH(pam, AC_ARG_WITH(pam,
[AS_HELP_STRING([--with-pam], [Include PAM support (default=no)])], [AS_HELP_STRING([--with-pam], [Include PAM support (default=auto)])],
[ case "$withval" in [ case "$withval" in
yes|no) yes|no|auto)
try_pam=$withval try_pam=$withval
;; ;;
esac esac