diff options
author | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-01-14 06:13:27 +0000 |
---|---|---|
committer | "Steven J. Hill" <sjhill@realitydiluted.com> | 2007-01-14 06:13:27 +0000 |
commit | d8bcc8f168b124671ca9315a1743534a0ca0bae8 (patch) | |
tree | e1c72e9f66a83830051f859bc21d0efccd807bcf /package/samba/samba-getgrouplist.patch | |
parent | 7b957dd483edfe3a4f39f7d82cbf470a1bd51524 (diff) | |
download | buildroot-novena-d8bcc8f168b124671ca9315a1743534a0ca0bae8.tar.gz buildroot-novena-d8bcc8f168b124671ca9315a1743534a0ca0bae8.zip |
Add Samba to buildroot.
Diffstat (limited to 'package/samba/samba-getgrouplist.patch')
-rw-r--r-- | package/samba/samba-getgrouplist.patch | 42 |
1 files changed, 42 insertions, 0 deletions
diff --git a/package/samba/samba-getgrouplist.patch b/package/samba/samba-getgrouplist.patch new file mode 100644 index 000000000..fe5591d46 --- /dev/null +++ b/package/samba/samba-getgrouplist.patch @@ -0,0 +1,42 @@ +diff -ur samba-3.0.23c/source/configure.in samba-3.0.23c-patched/source/configure.in +--- samba-3.0.23c/source/configure.in 2006-07-21 11:22:57.000000000 -0500 ++++ samba-3.0.23c-patched/source/configure.in 2006-11-09 10:23:26.000000000 -0600 +@@ -1399,38 +1399,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 + # + |