From 03901ca565e68fd9502d193fd3b9d1c620965a6a Mon Sep 17 00:00:00 2001 From: thib Date: Fri, 2 Nov 2001 13:38:51 +0000 Subject: [PATCH] changes the func to check if lib pam is installed from pam_start to pam_acct_mgmt (seems to work better on Debian) --- configure.in | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 -- 2.40.0