aboutsummaryrefslogtreecommitdiff
path: root/Makefile.flags
diff options
context:
space:
mode:
authorDenis Vlasenko <vda.linux@googlemail.com>2007-08-21 10:58:18 +0000
committerDenis Vlasenko <vda.linux@googlemail.com>2007-08-21 10:58:18 +0000
commitd6e81c7762e20e3df4d12c5515354e4da3a451a8 (patch)
tree67a7709e486fa51eeabe2c1f038f55d5564a274f /Makefile.flags
parent18f2a6bc5efa762c6bdfe4199f2067e6c35fa111 (diff)
downloadbusybox-d6e81c7762e20e3df4d12c5515354e4da3a451a8.tar.gz
login: optional support for PAM
Diffstat (limited to 'Makefile.flags')
-rw-r--r--Makefile.flags8
1 files changed, 5 insertions, 3 deletions
diff --git a/Makefile.flags b/Makefile.flags
index d8817bed6..c64a5c838 100644
--- a/Makefile.flags
+++ b/Makefile.flags
@@ -60,18 +60,20 @@ LDFLAGS += -static
endif
BBOX_LIB_LIST = m crypt
+
+ifeq ($(CONFIG_PAM),y)
+BBOX_LIB_LIST += pam pam_misc
+endif
+
ifeq ($(CONFIG_SELINUX),y)
-#LDLIBS += -lselinux -lsepol
BBOX_LIB_LIST += selinux sepol
endif
ifeq ($(CONFIG_EFENCE),y)
-#LDLIBS += -lefence
BBOX_LIB_LIST += efence
endif
ifeq ($(CONFIG_DMALLOC),y)
-#LDLIBS += -ldmalloc
BBOX_LIB_LIST += dmalloc
endif