Mercurial > hg > octave-kai > gnulib-hg
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 |
rev | line source |
---|---|
8884 | 1 Description: |
2 fseek() function: Reposition a FILE stream. | |
3 | |
4 Files: | |
5 lib/fseek.c | |
6 m4/fseek.m4 | |
7 | |
8 Depends-on: | |
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 | 11 |
12 configure.ac: | |
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 | 17 gl_STDIO_MODULE_INDICATOR([fseek]) |
18 | |
19 Makefile.am: | |
20 | |
21 Include: | |
22 <stdio.h> | |
23 | |
24 License: | |
14916
d9e175d5d217
fseeko: Provide a non-inline replacement of fseek().
Bruno Haible <bruno@clisp.org>
parents:
14911
diff
changeset
|
25 LGPLv2+ |
8884 | 26 |
27 Maintainer: | |
28 Bruno Haible | |
29 |