1
0
mirror of git://git.sv.gnu.org/coreutils.git synced 2026-04-21 03:12:48 +02:00

New file -- extracted from sh-utils' configure.in.

This commit is contained in:
Jim Meyering
1999-02-07 14:24:08 +00:00
parent c0dfa7f21b
commit 467a9bfd4b

12
m4/group-member.m4 Normal file
View File

@@ -0,0 +1,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)
]
)