mirror of
https://github.com/coreutils/coreutils.git
synced 2024-12-01 14:03:30 +08:00
13 lines
298 B
Plaintext
13 lines
298 B
Plaintext
#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)
|
|
]
|
|
)
|