coreutils/m4/group-member.m4

12 lines
259 B
Plaintext
Raw Normal View History

#serial 3
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.
2000-07-02 23:14:04 +08:00
AC_CHECK_FUNC(group_member, , [AC_LIBOBJ(group-member)])
]
)