blob: ecd5697f00fb7dffc54328141f5133a44b0e157c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
|
#define HAVE_LIMITS 1
#define HAVE_ENV 1
#define HAVE_ACCESS 1
#define HAVE_SHELLS 1
#define HAVE_LOGINUID 1
#define SUPPORT_UNIX_SESSION 1
#define SUPPORT_NOLOGIN_ACCOUNT 1
#define SUPPORT_NOLOGIN_AUTH 1
#if !MINIMAL
# define HAVE_MOTD 1
# define HAVE_MAIL 1
# define HAVE_LASTLOG 1
# if LINUX_PAM_VERSION > 0x010100 /* 1.1.0 */
# define TALLY_MODULE pam_tally2.so
# else
# define TALLY_MODULE pam_tally.so
# endif
#endif
#if WANT_SHA512
# define UNIX_EXTENDED_ENCRYPTION sha512 shadow
#else
# define UNIX_EXTENDED_ENCRYPTION md5 shadow
#endif
#define LIKEAUTH likeauth
#define DEBUG_NOLOGIN
|