Mercurial > hg > octave-kai > gnulib-hg
annotate modules/ftell @ 14914:ef09e997c426
ftell: Move AC_LIBOBJ invocations to module description.
* m4/ftell.m4 (gl_FUNC_FTELL): Move AC_LIBOBJ invocation from here...
* modules/ftell (configure.ac): ... to here.
author | Bruno Haible <bruno@clisp.org> |
---|---|
date | Sat, 07 May 2011 13:40:26 +0200 |
parents | efab6978105e |
children | 64c288a5020b |
rev | line source |
---|---|
8888 | 1 Description: |
2 ftell() function: Retrieve the position of a FILE stream. | |
3 | |
4 Files: | |
5 lib/ftell.c | |
6 m4/ftell.m4 | |
7 | |
8 Depends-on: | |
9 stdio | |
10427 | 10 errno |
14683
efab6978105e
Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents:
10427
diff
changeset
|
11 ftello [test $REPLACE_FTELL = 1] |
8888 | 12 |
13 configure.ac: | |
14 gl_FUNC_FTELL | |
14914
ef09e997c426
ftell: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
15 if test $REPLACE_FTELL = 1; then |
ef09e997c426
ftell: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
16 AC_LIBOBJ([ftell]) |
ef09e997c426
ftell: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents:
14683
diff
changeset
|
17 fi |
8888 | 18 gl_STDIO_MODULE_INDICATOR([ftell]) |
19 | |
20 Makefile.am: | |
21 | |
22 Include: | |
23 <stdio.h> | |
24 | |
25 License: | |
26 LGPL | |
27 | |
28 Maintainer: | |
29 Bruno Haible | |
30 |