summaryrefslogtreecommitdiff
path: root/m4/group-member.m4
blob: 6adc6fa63002946282a7ccb7385e2ce90c24c61a (plain)
1
2
3
4
5
6
7
8
9
10
11
#serial 2

dnl Written by Jim Meyering

AC_DEFUN(jm_FUNC_GROUP_MEMBER,
  [
    dnl Do this replacement check manually because I want the hyphen
    dnl (not the underscore) in the filename.
    AC_CHECK_FUNC(group_member, , [AC_LIBOBJ([group-member])])
  ]
)