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-01-configure.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-01-configure.patch')
-rw-r--r-- | package/linux-pam/linux-pam-01-configure.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/package/linux-pam/linux-pam-01-configure.patch b/package/linux-pam/linux-pam-01-configure.patch new file mode 100644 index 0000000000..d39261f74e --- /dev/null +++ b/package/linux-pam/linux-pam-01-configure.patch @@ -0,0 +1,19 @@ +Add check for ruserok + +ruserok is not available/functional in uclibc, provide conditions for compilation +where needed. + +Signed-off-by: Dmitry Golubovsky <golubovsky@gmail.com> + +diff -urN a/configure.in b/configure.in +--- a/configure.in 2012-08-17 03:48:24.000000000 -0500 ++++ b/configure.in 2013-07-17 09:49:23.760254684 -0500 +@@ -526,7 +526,7 @@ + AC_CHECK_FUNCS(strcspn strdup strspn strstr strtol uname) + AC_CHECK_FUNCS(getutent_r getpwnam_r getpwuid_r getgrnam_r getgrgid_r getspnam_r) + AC_CHECK_FUNCS(getgrouplist getline getdelim) +-AC_CHECK_FUNCS(inet_ntop inet_pton innetgr ruserok_af) ++AC_CHECK_FUNCS(inet_ntop inet_pton innetgr ruserok_af ruserok) + + AC_CHECK_FUNCS(unshare, [UNSHARE=yes], [UNSHARE=no]) + AM_CONDITIONAL([HAVE_UNSHARE], [test "$UNSHARE" = yes]) |