diff options
author | Andrew Tridgell <tridge@samba.org> | 2001-04-19 13:39:44 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2001-04-19 13:39:44 +0000 |
commit | e089377ddef192a60b9511ac93d0bcf15451b1bb (patch) | |
tree | 3f271f55c16187782c7aeff7716acf8896259a54 | |
parent | e299287f295c48ff35d874ecbf814e99986528f8 (diff) | |
download | samba-e089377ddef192a60b9511ac93d0bcf15451b1bb.tar.gz samba-e089377ddef192a60b9511ac93d0bcf15451b1bb.tar.xz samba-e089377ddef192a60b9511ac93d0bcf15451b1bb.zip |
minor configure fix from andrew bartlett
-rw-r--r-- | source/configure.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/source/configure.in b/source/configure.in index 67659d50278..3c7a132ee68 100644 --- a/source/configure.in +++ b/source/configure.in @@ -1597,7 +1597,7 @@ AC_ARG_WITH(smbmount, ################################################# # check for a PAM password database -with_pam=no +with_pam_for_crypt=no AC_MSG_CHECKING(whether to use PAM password database) AC_ARG_WITH(pam, [ --with-pam Include PAM password database support @@ -1607,7 +1607,7 @@ AC_ARG_WITH(pam, AC_MSG_RESULT(yes) AC_DEFINE(WITH_PAM) LIBS="$LIBS -lpam" - with_pam=yes + with_pam_for_crypt=yes ;; *) AC_MSG_RESULT(no) @@ -1620,7 +1620,7 @@ AC_ARG_WITH(pam, ############################################### # test for where we get crypt() from, but only # if not using PAM -if test $with_pam = no; then +if test $with_pam_for_crypt = no; then AC_CHECK_FUNCS(crypt) if test x"$ac_cv_func_crypt" = x"no"; then AC_CHECK_LIB(crypt, crypt, [LIBS="$LIBS -lcrypt"; |