From: thib Date: Fri, 2 Nov 2001 13:38:51 +0000 (+0000) Subject: changes the func to check if lib pam is installed from pam_start to pam_acct_mgmt... X-Git-Tag: ver1564~163 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=03901ca565e68fd9502d193fd3b9d1c620965a6a;p=fcron changes the func to check if lib pam is installed from pam_start to pam_acct_mgmt (seems to work better on Debian) --- diff --git a/configure.in b/configure.in index cd007bd..5e9333e 100644 --- a/configure.in +++ b/configure.in @@ -648,14 +648,14 @@ AC_ARG_WITH(pam, ;; yes) AC_MSG_RESULT(yes) - AC_CHECK_LIB(pam, pam_start) + AC_CHECK_LIB(pam, pam_acct_mgmt) ;; *) AC_MSG_ERROR(Must be set to either "yes" or "no".) ;; esac ], AC_MSG_RESULT(yes) - AC_CHECK_LIB(pam, pam_start) + AC_CHECK_LIB(pam, pam_acct_mgmt) ) if echo "$LIBS" | grep -e "-lpam" > /dev/null ; then usepam=1