Tizen 2.0 Release
[external/tizen-coreutils.git] / m4 / group-member.m4
1 #serial 10
2
3 # Copyright (C) 1999, 2000, 2001, 2003, 2004, 2005, 2006 Free Software
4 # Foundation, Inc.
5
6 # This file is free software; the Free Software Foundation
7 # gives unlimited permission to copy and/or distribute it,
8 # with or without modifications, as long as this notice is preserved.
9
10 dnl Written by Jim Meyering
11
12 AC_DEFUN([gl_FUNC_GROUP_MEMBER],
13 [
14   dnl Persuade glibc <unistd.h> to declare group_member().
15   AC_REQUIRE([AC_GNU_SOURCE])
16
17   dnl Do this replacement check manually because I want the hyphen
18   dnl (not the underscore) in the filename.
19   AC_CHECK_FUNC(group_member, , [
20     AC_LIBOBJ(group-member)
21     gl_PREREQ_GROUP_MEMBER
22   ])
23 ])
24
25 # Prerequisites of lib/group-member.c.
26 AC_DEFUN([gl_PREREQ_GROUP_MEMBER],
27 [
28   AC_REQUIRE([AC_FUNC_GETGROUPS])
29 ])