diff options
author | Gustavo Zacarias <gustavo@zacarias.com.ar> | 2013-09-16 13:52:52 -0300 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2013-09-19 21:15:30 +0200 |
commit | 17e761efc450328fb1a7be52b73613d998cb68f0 (patch) | |
tree | 66c3fb1877ae5331d9cd4e8ef89b28b68f16a8d3 /package/linux-pam/linux-pam-pam_unix-fix-build-in-enable-selinux-mode.patch | |
parent | 32b869c32407ede709ab9657b42f32ac3da5b4e3 (diff) | |
download | buildroot-17e761efc450328fb1a7be52b73613d998cb68f0.tar.gz buildroot-17e761efc450328fb1a7be52b73613d998cb68f0.zip |
linux-pam: bump to version 1.1.7
And fix build breakage with newer automake versions (mkdir_p
deprecation).
Signed-off-by: Gustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/linux-pam/linux-pam-pam_unix-fix-build-in-enable-selinux-mode.patch')
-rw-r--r-- | package/linux-pam/linux-pam-pam_unix-fix-build-in-enable-selinux-mode.patch | 37 |
1 files changed, 0 insertions, 37 deletions
diff --git a/package/linux-pam/linux-pam-pam_unix-fix-build-in-enable-selinux-mode.patch b/package/linux-pam/linux-pam-pam_unix-fix-build-in-enable-selinux-mode.patch deleted file mode 100644 index 550e02e487..0000000000 --- a/package/linux-pam/linux-pam-pam_unix-fix-build-in-enable-selinux-mode.patch +++ /dev/null @@ -1,37 +0,0 @@ -From: "Dmitry V. Levin" <ldv@altlinux.org> -Date: Wed, 10 Oct 2012 18:13:07 +0000 -Subject: [PATCH] pam_unix: fix build in --enable-selinux mode - -glibc's <sys/wait.h> starting with commit -http://sourceware.org/git/?p=glibc.git;a=commitdiff;h=glibc-2.15-231-gd94a467 -does not include <sys/resource.h> 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 <sys/resource.h> without -relying on other headers. - -* modules/pam_unix/pam_unix_passwd.c: Include <sys/resource.h>. - -Reported-by: Guido Trentalancia <guido@trentalancia.com> -Reported-by: "Jory A. Pratt" <anarchy@gentoo.org> -Reported-by: Diego Elio Pettenò <flameeyes@flameeyes.eu> -Signed-off-by: Arnout Vandecappelle (Essensium/Mind) <arnout@mind.be> -[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 <signal.h> - #include <errno.h> - #include <sys/wait.h> -+#include <sys/resource.h> - - #include <security/_pam_macros.h> - --- -1.8.2.1 - |