X-Git-Url: http://erislabs.net/gitweb/?a=blobdiff_plain;f=m4%2Fgroup-member.m4;h=a415a32b0288d5cb9ce1feb3d2c83748495f6b6a;hb=721f56dcf49f8f004f609cc966f876922faad1a8;hp=dca7f9e8069a330bf1f2cd1d4d51bdbc85b033ae;hpb=44d7c1c1f004fa9bfb8ec3948de2671a7958cf5b;p=gnulib.git diff --git a/m4/group-member.m4 b/m4/group-member.m4 index dca7f9e80..a415a32b0 100644 --- a/m4/group-member.m4 +++ b/m4/group-member.m4 @@ -1,6 +1,7 @@ -#serial 7 +# serial 13 + +# Copyright (C) 1999-2001, 2003-2007, 2009-2011 Free Software Foundation, Inc. -# Copyright (C) 1999, 2000, 2001, 2003, 2004 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. @@ -9,20 +10,24 @@ dnl Written by Jim Meyering AC_DEFUN([gl_FUNC_GROUP_MEMBER], [ + AC_REQUIRE([gl_UNISTD_H_DEFAULTS]) + dnl Persuade glibc to declare group_member(). - AC_REQUIRE([AC_GNU_SOURCE]) + AC_REQUIRE([AC_USE_SYSTEM_EXTENSIONS]) 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) - gl_PREREQ_GROUP_MEMBER + AC_CHECK_FUNC([group_member], , [ + HAVE_GROUP_MEMBER=0 ]) + if test $HAVE_GROUP_MEMBER = 0; then + AC_LIBOBJ([group-member]) + gl_PREREQ_GROUP_MEMBER + fi ]) # Prerequisites of lib/group-member.c. AC_DEFUN([gl_PREREQ_GROUP_MEMBER], [ - AC_CHECK_HEADERS_ONCE(unistd.h) AC_REQUIRE([AC_FUNC_GETGROUPS]) ])