diff options
author | Sven Neumann <s.neumann@raumfeld.com> | 2011-09-13 10:42:07 +0200 |
---|---|---|
committer | Peter Korsgaard <jacmet@sunsite.dk> | 2011-09-13 21:31:55 +0200 |
commit | b25b711e4a62095817e415c4961ea5530c28876e (patch) | |
tree | 0406c2a09f8281a747631fc4bd9173aff548c435 /package/samba/samba-getgrouplist.patch | |
parent | ab6b9e77fed118acb8a757d947708fc1773d21dc (diff) | |
download | buildroot-novena-b25b711e4a62095817e415c4961ea5530c28876e.tar.gz buildroot-novena-b25b711e4a62095817e415c4961ea5530c28876e.zip |
samba: bump to 3.5.11
Bump to version 3.5.11 and also update the download location.
Signed-off-by: Sven Neumann <s.neumann@raumfeld.com>
Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
Diffstat (limited to 'package/samba/samba-getgrouplist.patch')
-rw-r--r-- | package/samba/samba-getgrouplist.patch | 41 |
1 files changed, 0 insertions, 41 deletions
diff --git a/package/samba/samba-getgrouplist.patch b/package/samba/samba-getgrouplist.patch deleted file mode 100644 index e98d9cdc2..000000000 --- a/package/samba/samba-getgrouplist.patch +++ /dev/null @@ -1,41 +0,0 @@ ---- a/source/configure.in 2009-04-01 13:48:54.000000000 +0200 -+++ b/source/configure.in 2009-04-20 13:08:42.000000000 +0200 -@@ -1219,38 +1219,6 @@ - AC_DEFINE(HAVE_PRCTL, 1, [Whether prctl is available]),[]) - - # --# --# --case "$host_os" in -- *linux*) -- # glibc <= 2.3.2 has a broken getgrouplist -- AC_TRY_RUN([ --#include <unistd.h> --#include <sys/utsname.h> --main() { -- /* glibc up to 2.3 has a broken getgrouplist */ --#if defined(__GLIBC__) && defined(__GLIBC_MINOR__) -- int libc_major = __GLIBC__; -- int libc_minor = __GLIBC_MINOR__; -- -- if (libc_major < 2) -- exit(1); -- if ((libc_major == 2) && (libc_minor <= 3)) -- exit(1); --#endif -- exit(0); --} --], [linux_getgrouplist_ok=yes], [linux_getgrouplist_ok=no]) -- if test x"$linux_getgrouplist_ok" = x"yes"; then -- AC_DEFINE(HAVE_GETGROUPLIST, 1, [Have good getgrouplist]) -- fi -- ;; -- *) -- AC_CHECK_FUNCS(getgrouplist) -- ;; --esac -- --# - # stat64 family may need <sys/stat.h> on some systems, notably ReliantUNIX - # - |