summaryrefslogtreecommitdiff
path: root/gl/m4
diff options
context:
space:
mode:
authorEric Blake <ebb9@byu.net>2009-11-12 11:59:09 -0700
committerEric Blake <ebb9@byu.net>2009-11-13 07:50:20 -0700
commit6a31fd8d732afd232d6a99708192170e13129374 (patch)
treea02c4dc471e03a5b54820a03776097ffc1a5e08f /gl/m4
parent719a95aa9dca00c83c6da57fbdd5c2ae7acaa1f8 (diff)
downloadcoreutils-6a31fd8d732afd232d6a99708192170e13129374.tar.xz
build: update gnulib, for getgroups improvements
A replacement getgroups is now guaranteed to exist, but it may fail with ENOSYS. mgetgroups is moved to gnulib, and now takes gid_t instead of GETGROUPS_T (but setgroups still needs GETGROUPS_T). * gnulib: Update to latest. * gl/modules/mgetgroups: Delete, moved to gnulib. * gl/m4/mgetgroups.m4: Likewise. * gl/lib/mgetgroups.h: Likewise. * gl/lib/mgetgroups.c: Likewise. * src/group-list.c (print_group_list): Adjust callers. * src/id.c (print_full_info): Likewise.
Diffstat (limited to 'gl/m4')
-rw-r--r--gl/m4/mgetgroups.m411
1 files changed, 0 insertions, 11 deletions
diff --git a/gl/m4/mgetgroups.m4 b/gl/m4/mgetgroups.m4
deleted file mode 100644
index 4b3f32828..000000000
--- a/gl/m4/mgetgroups.m4
+++ /dev/null
@@ -1,11 +0,0 @@
-#serial 3
-dnl Copyright (C) 2007-2009 Free Software Foundation, Inc.
-dnl This file is free software; the Free Software Foundation
-dnl gives unlimited permission to copy and/or distribute it,
-dnl with or without modifications, as long as this notice is preserved.
-
-AC_DEFUN([gl_MGETGROUPS],
-[
- AC_CHECK_FUNCS([getgrouplist])
- AC_LIBOBJ([mgetgroups])
-])