mirror of
git://git.sv.gnu.org/coreutils.git
synced 2026-04-19 18:26:32 +02:00
* gl/m4/mgetgroups.m4: Check for getgrouplist. * gl/lib/mgetgroups.c (mgetgroups): Use getgrouplist, if available. * TODO: Remove the item about switching to getgrouplist. * NEWS: mention this
12 lines
352 B
Plaintext
12 lines
352 B
Plaintext
#serial 2
|
|
dnl Copyright (C) 2007-2008 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])
|
|
])
|