From: "Dmitry V. Levin" Date: Wed, 10 Oct 2012 18:13:07 +0000 Subject: [PATCH] pam_unix: fix build in --enable-selinux mode glibc's starting with commit http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=glibc-2.15-231-gd94a467 does not include for POSIX 2008 conformance reasons, so when pam is being built with SELinux support enabled, pam_unix_passwd.c uses getrlimit(2) and therefore should include without relying on other headers. * modules/pam_unix/pam_unix_passwd.c: Include . Reported-by: Guido Trentalancia Reported-by: "Jory A. Pratt" Reported-by: Diego Elio Pettenò Signed-off-by: Arnout Vandecappelle (Essensium/Mind) [This patch is in linux-pam 1.1.6] --- modules/pam_unix/pam_unix_passwd.c | 1 + 1 file changed, 1 insertion(+) diff --git a/modules/pam_unix/pam_unix_passwd.c b/modules/pam_unix/pam_unix_passwd.c index 9e1302d..94bc3ec 100644 --- a/modules/pam_unix/pam_unix_passwd.c +++ b/modules/pam_unix/pam_unix_passwd.c @@ -58,6 +58,7 @@ #include #include #include +#include #include -- 1.8.2.1