summaryrefslogtreecommitdiffstats
path: root/rules/pam.in
diff options
context:
space:
mode:
Diffstat (limited to 'rules/pam.in')
-rw-r--r--rules/pam.in18
1 files changed, 16 insertions, 2 deletions
diff --git a/rules/pam.in b/rules/pam.in
index 75d5ef42c..4bf4cac10 100644
--- a/rules/pam.in
+++ b/rules/pam.in
@@ -1,10 +1,24 @@
## SECTION=security
-config PAM
+menuconfig PAM
tristate
- prompt "PAM"
+ prompt "PAM "
+ select DB if PAM_DB
select LIBC_CRYPT
+ select LIBTIRPC if PAM_NIS
help
Linux-PAM (Pluggable Authentication Modules for Linux) is a suite
of shared libraries that enable the local system administrator to
choose how applications authenticate users.
+
+if PAM
+
+config PAM_DB
+ bool
+ prompt "build pam_userdb (authenticate against a Berkeley DB database)"
+
+config PAM_NIS
+ bool
+ prompt "enable NIS/YP support in pam_unix"
+
+endif