From 050f86f83b8d6642e1b88c37f4ad294f5e206b87 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Lars=20M=C3=BCller?= Date: Thu, 4 Feb 2010 11:19:06 +0100 Subject: [PATCH] Add cross option to samba_cv_linux_getgrouplist_ok "cross" as an option got removed accidentl with commit e5a95132 while moving in direction of 3.2. Patch proposed by Richard Sharpe . (cherry picked from commit 30ea9932f5ea8a73c84dbab3ae3e997c2ae34e79) Fix bug #7047. --- source3/configure.in | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source3/configure.in b/source3/configure.in index 1034509e530..be18c2485ad 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1243,7 +1243,9 @@ main() { #endif exit(0); } -], [linux_getgrouplist_ok=yes], [linux_getgrouplist_ok=no]) +], [linux_getgrouplist_ok=yes], + [linux_getgrouplist_ok=no], + [linux_getgrouplist_ok=cross]) if test x"$linux_getgrouplist_ok" = x"yes"; then AC_DEFINE(HAVE_GETGROUPLIST, 1, [Have good getgrouplist]) fi -- 2.11.4.GIT