Mercurial > hg > octave-kai > gnulib-hg
annotate modules/ftello @ 14401:b0fdfaeb0a77
stdio: simplify by moving gl_STDIN_LARGE_OFFSET to fseeko, ftello
* m4/fseeko.m4 (gl_STDIN_LARGE_OFFSET): Moved here, from ...
* m4/stdio_h.m4 (gl_STDIN_LARGE_OFFSET): ... here, because
* modules/ftello (Files): Add m4/fseeko.m4, for gl_STDIN_LARGE_OFFSET.
author | Paul Eggert <eggert@cs.ucla.edu> |
---|---|
date | Mon, 28 Feb 2011 15:10:55 -0800 |
parents | e3a337bd785d |
children | efab6978105e |
rev | line source |
---|---|
8710 | 1 Description: |
2 ftello() function: Retrieve the position of a FILE stream. | |
3 | |
4 Files: | |
8868
90e71310a07f
Fix fseeko/ftello on cygwin 1.5.24.
Eric Blake <ebb9@byu.net>
parents:
8718
diff
changeset
|
5 lib/ftello.c |
13294
4263e09100fb
ftell, ftello: Work around Solaris bug.
Bruno Haible <bruno@clisp.org>
parents:
9771
diff
changeset
|
6 lib/stdio-impl.h |
14401
b0fdfaeb0a77
stdio: simplify by moving gl_STDIN_LARGE_OFFSET to fseeko, ftello
Paul Eggert <eggert@cs.ucla.edu>
parents:
13591
diff
changeset
|
7 m4/fseeko.m4 |
8710 | 8 m4/ftello.m4 |
9 | |
10 Depends-on: | |
9771 | 11 extensions |
8872 | 12 lseek |
8710 | 13 stdio |
14 | |
8718
c541fe12ef9e
Ensure fseeko and ftello are declared on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
8710
diff
changeset
|
15 configure.ac-early: |
c541fe12ef9e
Ensure fseeko and ftello are declared on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
8710
diff
changeset
|
16 AC_REQUIRE([AC_FUNC_FSEEKO]) |
c541fe12ef9e
Ensure fseeko and ftello are declared on glibc systems.
Bruno Haible <bruno@clisp.org>
parents:
8710
diff
changeset
|
17 |
8710 | 18 configure.ac: |
19 gl_FUNC_FTELLO | |
20 gl_STDIO_MODULE_INDICATOR([ftello]) | |
21 | |
22 Makefile.am: | |
23 | |
24 Include: | |
25 <stdio.h> | |
26 | |
27 License: | |
13591 | 28 LGPLv2+ |
8710 | 29 |
30 Maintainer: | |
31 Bruno Haible | |
32 |