diff options
author | Lars Müller <lars@samba.org> | 2010-01-20 12:41:43 +0100 |
---|---|---|
committer | Lars Müller <lars@samba.org> | 2010-01-20 12:41:43 +0100 |
commit | 30ea9932f5ea8a73c84dbab3ae3e997c2ae34e79 (patch) | |
tree | 7ce6dbb33761d50ec0fd26383157531c724ee757 | |
parent | 3bf9bbb275a9b70a2407e282ea2ea65add070077 (diff) | |
download | samba-30ea9932f5ea8a73c84dbab3ae3e997c2ae34e79.tar.gz samba-30ea9932f5ea8a73c84dbab3ae3e997c2ae34e79.tar.bz2 samba-30ea9932f5ea8a73c84dbab3ae3e997c2ae34e79.zip |
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 <realrichardsharpe@gmail.com>.
-rw-r--r-- | source3/configure.in | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/source3/configure.in b/source3/configure.in index 529cc4df71..e31a6d3738 100644 --- a/source3/configure.in +++ b/source3/configure.in @@ -1262,7 +1262,9 @@ main() { #endif exit(0); } -], [samba_cv_linux_getgrouplist_ok=yes], [samba_cv_linux_getgrouplist_ok=no])]) +], [samba_cv_linux_getgrouplist_ok=yes], + [samba_cv_linux_getgrouplist_ok=no], + [samba_cv_linux_getgrouplist_ok=cross])]) if test x"$samba_cv_linux_getgrouplist_ok" = x"yes"; then AC_DEFINE(HAVE_GETGROUPLIST, 1, [Have good getgrouplist]) fi |