annotate modules/fseek @ 15053:d8eeaab555f5

mktime: Respect rules for use of AC_LIBOBJ. * m4/mktime.m4 (AC_FUNC_MKTIME): Remove macro. (gl_FUNC_MKTIME): Inline it here. Set gl_cv_func_working_mktime. Move AC_LIBOBJ and gl_PREREQ_MKTIME invocations from here... (gl_FUNC_MKTIME_INTERNAL): ... and here... * modules/mktime (configure.ac): ... to here. * modules/mktime-internal (configure.ac): ... and here. * m4/timegm.m4 (gl_FUNC_TIMEGM): Update.
author Bruno Haible <bruno@clisp.org>
date Sat, 21 May 2011 16:14:17 +0200
parents d9e175d5d217
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8884
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
1 Description:
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
2 fseek() function: Reposition a FILE stream.
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
3
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
4 Files:
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
5 lib/fseek.c
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
6 m4/fseek.m4
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
7
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
8 Depends-on:
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
9 stdio
14683
efab6978105e Avoid unnecessary compilation units, through conditional dependencies.
Bruno Haible <bruno@clisp.org>
parents: 13075
diff changeset
10 fseeko [test $REPLACE_FSEEK = 1]
8884
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
11
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
12 configure.ac:
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
13 gl_FUNC_FSEEK
14911
51b1cc0a0bc7 fseek: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
14 if test $REPLACE_FSEEK = 1; then
51b1cc0a0bc7 fseek: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
15 AC_LIBOBJ([fseek])
51b1cc0a0bc7 fseek: Move AC_LIBOBJ invocations to module description.
Bruno Haible <bruno@clisp.org>
parents: 14683
diff changeset
16 fi
8884
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
17 gl_STDIO_MODULE_INDICATOR([fseek])
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
18
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
19 Makefile.am:
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
20
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
21 Include:
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
22 <stdio.h>
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
23
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
24 License:
14916
d9e175d5d217 fseeko: Provide a non-inline replacement of fseek().
Bruno Haible <bruno@clisp.org>
parents: 14911
diff changeset
25 LGPLv2+
8884
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
26
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
27 Maintainer:
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
28 Bruno Haible
cccbcdfb7afa New module 'fseek'.
Bruno Haible <bruno@clisp.org>
parents:
diff changeset
29