601583c320
Patch provided by Sergey Svishchev in private mail.
17 lines
437 B
Makefile
17 lines
437 B
Makefile
# $NetBSD: options.mk,v 1.2 2007/02/22 19:26:56 wiz Exp $
|
|
|
|
PKG_OPTIONS_VAR= PKG_OPTIONS.netatalk1
|
|
PKG_SUPPORTED_OPTIONS= pam
|
|
.include "../../mk/bsd.options.mk"
|
|
|
|
###
|
|
### Support PAM authentication and build smbpass and winbind PAM modules.
|
|
###
|
|
.if !empty(PKG_OPTIONS:Mpam)
|
|
. include "../../security/PAM/module.mk"
|
|
CONFIGURE_ARGS+= --with-pam
|
|
PLIST_SUBST+= PAM=
|
|
.else
|
|
CONFIGURE_ARGS+= --without-pam
|
|
PLIST_SUBST+= PAM="@comment "
|
|
.endif
|