summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-05-17 22:16:05 +1000
committerDamien Miller <djm@mindrot.org>2000-05-17 22:16:05 +1000
commit0e65eed58acc0053d163e96463a7c4d0684e55bd (patch)
tree742dc9c5f727ce99d3e84a8bffc65b8c215b719d
parentf3c6cf13837e24ab6ac7b19567bff00dd6c1b161 (diff)
- Fix HAVE_PAM_GETENVLIST setting from Simon Wilkinson <sxw@dcs.ed.ac.uk>
-rw-r--r--ChangeLog1
-rw-r--r--configure.in2
2 files changed, 2 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 5d28c74d..4f0c42d6 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,7 @@
- Applied Tom Bertelson's <tbert@abac.com> AIX authentication fix
- Avoid WCOREDUMP complation errors for systems that lack it
- Avoid SIGCHLD warnings from entropy commands
+ - Fix HAVE_PAM_GETENVLIST setting from Simon Wilkinson <sxw@dcs.ed.ac.uk>
20000513
- Fix for non-recognised DSA keys from Arkadiusz Miskiewicz
diff --git a/configure.in b/configure.in
index aaf3d852..62456ace 100644
--- a/configure.in
+++ b/configure.in
@@ -165,7 +165,7 @@ if test -z "$no_pam" -a "x$ac_cv_header_security_pam_appl_h" = "xyes" ; then
AC_CHECK_LIB(dl, dlopen, , )
LIBS="$LIBS -lpam"
- AC_CHECK_FUNC(pam_getenvlist)
+ AC_CHECK_FUNCS(pam_getenvlist)
# Check PAM strerror arguments (old PAM)
AC_MSG_CHECKING([whether pam_strerror takes only one argument])