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

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, , [LIBOBJS="$LIBOBJS group-member.$ac_objext"])
    AC_SUBST(LIBOBJS)
  ]
)