Mercurial > hg > octave-lojdl > gnulib-hg
annotate modules/readlink @ 15118:50a0061f67fe
strtoimax: Move AC_LIBOBJ invocations to module description.
* m4/strtoimax.m4 (gl_FUNC_STRTOIMAX): Call AC_CHECK_FUNCS instead of
AC_REPLACE_FUNCS. Move AC_LIBOBJ and gl_PREREQ_STRTOIMAX invocations
from here...
* modules/strtoimax (configure.ac): ... to here.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sun, 22 May 2011 14:16:25 +0200 |
parents | 79164b84def4 |
children |
rev | line source |
---|---|
4405 | 1 Description: |
2 readlink() function: read the value of a symbolic link. | |
3 | |
4 Files: | |
5 lib/readlink.c | |
6 m4/readlink.m4 | |
7 | |
8 Depends-on: | |
8199
51d32a83a7df
Move more declarations into <unistd.h>.
Bruno Haible <bruno@clisp.org>
parents:
7497
diff
changeset
|
9 unistd |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
12038
diff
changeset
|
10 stat [test $HAVE_READLINK = 0 || test $REPLACE_READLINK = 1] |
4405 | 11 |
12 configure.ac: | |
13 gl_FUNC_READLINK | |
15074
79164b84def4
readlink: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
14 if test $HAVE_READLINK = 0 || test $REPLACE_READLINK = 1; then |
79164b84def4
readlink: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
15 AC_LIBOBJ([readlink]) |
79164b84def4
readlink: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
16 gl_PREREQ_READLINK |
79164b84def4
readlink: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
17 fi |
8199
51d32a83a7df
Move more declarations into <unistd.h>.
Bruno Haible <bruno@clisp.org>
parents:
7497
diff
changeset
|
18 gl_UNISTD_MODULE_INDICATOR([readlink]) |
4405 | 19 |
20 Makefile.am: | |
21 | |
22 Include: | |
8199
51d32a83a7df
Move more declarations into <unistd.h>.
Bruno Haible <bruno@clisp.org>
parents:
7497
diff
changeset
|
23 <unistd.h> |
4405 | 24 |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4405
diff
changeset
|
25 License: |
10278 | 26 LGPLv2+ |
5251
42b53a22aee5
Add a license tag to every module.
Bruno Haible <bruno@clisp.org>
parents:
4405
diff
changeset
|
27 |
4405 | 28 Maintainer: |
29 Bruno Haible | |
30 |