Mercurial > hg > octave-jordi > gnulib-hg
annotate modules/group-member @ 18070:d460ec17f09f
autoupdate
author | Karl Berry <karl@freefriends.org> |
---|---|
date | Tue, 28 Jul 2015 13:57:32 -0700 |
parents | 7d6610cfd2cc |
children |
rev | line source |
---|---|
4110 | 1 Description: |
4172 | 2 Determine whether the current process has the permissions of a given group ID. |
4110 | 3 |
4 Files: | |
5 lib/group-member.c | |
6 m4/group-member.m4 | |
7 | |
8 Depends-on: | |
14733
8d8a6d8151f4
group-member: Declare function in <unistd.h>.
Bruno Haible <bruno@clisp.org>
parents:
12280
diff
changeset
|
9 unistd |
9209
5a0294ce5372
Track CVS Autoconf on AC_USE_SYSTEM_EXTENSIONS.
Eric Blake <ebb9@byu.net>
parents:
7497
diff
changeset
|
10 extensions |
17129
7d6610cfd2cc
group-member: omit unnecessary dependencies
Paul Eggert <eggert@cs.ucla.edu>
parents:
14979
diff
changeset
|
11 getgroups [test $HAVE_GROUP_MEMBER = 0] |
7d6610cfd2cc
group-member: omit unnecessary dependencies
Paul Eggert <eggert@cs.ucla.edu>
parents:
14979
diff
changeset
|
12 xalloc-oversized [test $HAVE_GROUP_MEMBER = 0] |
4110 | 13 |
14 configure.ac: | |
5016
7141ea4946af
Change jm_ to gl_ in AC_DEFINE'd names. Update all uses.
Jim Meyering <jim@meyering.net>
parents:
4830
diff
changeset
|
15 gl_FUNC_GROUP_MEMBER |
14979
7a1b4cd6d351
group-member: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14733
diff
changeset
|
16 if test $HAVE_GROUP_MEMBER = 0; then |
7a1b4cd6d351
group-member: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14733
diff
changeset
|
17 AC_LIBOBJ([group-member]) |
7a1b4cd6d351
group-member: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14733
diff
changeset
|
18 gl_PREREQ_GROUP_MEMBER |
7a1b4cd6d351
group-member: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14733
diff
changeset
|
19 fi |
14733
8d8a6d8151f4
group-member: Declare function in <unistd.h>.
Bruno Haible <bruno@clisp.org>
parents:
12280
diff
changeset
|
20 gl_UNISTD_MODULE_INDICATOR([group-member]) |
4110 | 21 |
22 Makefile.am: | |
23 | |
24 Include: | |
14733
8d8a6d8151f4
group-member: Declare function in <unistd.h>.
Bruno Haible <bruno@clisp.org>
parents:
12280
diff
changeset
|
25 <unistd.h> |
4110 | 26 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5016
diff
changeset
|
27 License: |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5016
diff
changeset
|
28 GPL |
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
5016
diff
changeset
|
29 |
4197 | 30 Maintainer: |
31 Jim Meyering |