55e0a0c1d6
This Apache LDAP authentication/authorization module tries to solve the following problems that other such modules may not solve in all cases: * Map the short form of the distinguished name of a certificate and its issuer obtained from the environment of mod_ssl to a user distinguished name in an LDAP directory. * Check the age of a password in an LDAP directory, denying authorization in case the password is to old. * Authorize a user based on roles or an arbitrary LDAP filter expression. * Authorize a user based on whether he owns a file or belongs to the group owning a file.
14 lines
390 B
Makefile
14 lines
390 B
Makefile
# $NetBSD: options.mk,v 1.1 2013/09/13 11:56:19 fhajny Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.ap22-authz-ldap
|
|
PKG_SUPPORTED_OPTIONS= openssl
|
|
PKG_SUGGESTED_OPTIONS= #
|
|
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
.if !empty(PKG_OPTIONS:Mopenssl)
|
|
CONFIGURE_ARGS+= --with-openssl-path=${BUILDLINK_PREFIX.openssl}
|
|
.include "../../security/openssl/buildlink3.mk"
|
|
.else
|
|
CONFIGURE_ARGS+= --disable-ssl
|
|
.endif
|