summaryrefslogtreecommitdiff
path: root/security/openpam
AgeCommit message (Collapse)AuthorFilesLines
2005-02-10Update security/openpam to 20050201 (Feterita). Changes from versionjlam4-17/+20
20040210 (Eelgrass) include: - BUGFIX: Correct numerous markup errors, invalid cross-references, and other issues in the manual pages, with kind assistance from Ruslan Ermilov <ru@freebsd.org>. - BUGFIX: Avoid multiple evaluation of macro arguments in ENTERX() and RETURNX() macros. - BUGFIX: Remove an unnecessary and non-portable pointer cast in pam_get_data(3). - BUGFIX: Fix identical typos in PAM_ACCT_EXPIRED case in pam_strerror(3) and gendoc.pl. - ENHANCE: Minor overhaul of the autoconf / build system. - ENHANCE: Add openpam_free_envlist(3).
2005-01-22Pass -DSYSCONFDIR="$sysconfdir" in the Makefile instead of the configurejlam4-15/+17
script to avoid bizarre quoting problems within the configure script. This also fixes the definition of SYSCONFDIR in the compiled library. Bump the PKGREVISION to 1.
2005-01-17OpenPAM doesn't really need perl during the build... it's only therejlam1-3/+4
to regenerate some documentation files, but the regen is unnecessary. Fix the post-tools target that created a dummy perl -- it was failing because ${TRUE} may not be an actual executable (it could be a shell builtin) and thus symlinking to it may not work.
2005-01-17According to the bulk builds, this needs perl;wiz1-1/+2
add USE_PERL5=build.
2005-01-14Fix spelling error that would have made this file inefficient.jlam1-2/+2
2005-01-13Add a builtin.mk file to check for a built-in version of openpam and tojlam1-0/+40
associate it with a PKGNAME.
2005-01-13Add a buildlink3.mk file for openpam.jlam1-0/+20
2005-01-13This package dlopen()s loadable modules, so include dlopen.buildlink3.mkjlam1-1/+3
to do the right thing on NetBSD-2.0.
2005-01-13Initial import of openpam-20040210 as security/openpam.jlam6-0/+147
OpenPAM is an open source PAM library that focuses on simplicity, correctness, and cleanliness. OpenPAM aims to gather the best features of Solaris PAM, XSSO and Linux-PAM, plus some innovations of its own. In areas where these implementations disagree, OpenPAM tries to remain compatible with Solaris, at the expense of XSSO conformance and Linux-PAM compatibility. These are some of OpenPAM's features: - Implements the complete PAM API as described in the original PAM paper and in OSF-RFC 86.0; this corresponds to the full XSSO API except for mappings and secondary authentication. Also implements some extensions found in Solaris 9. - Extends the API with several useful and time-saving functions. - Performs strict checking of return values from service modules.