From: Thibault Godouet 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: ver2_9_4~237 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=f377c9e4f0263e47b6f35f9439b235582b6fb304;p=thirdparty%2Ffcron.git 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